$(document).ready(function() { 

// New window opener
	$('a.external').click(function(){
    	window.open(this.href);
    	return false;
    });

// Superfish initialize
//    $('ul#navigation').superfish({
//    	speed:			1,
//    	delay:			400,
//    	autoArrows: 	false,
//    	dropShadows:	false
//    }).find('ul').bgIframe({opacity:false}); 

// Galleriffic initialize
//	var gallery = $('#gallery-content').galleriffic('#gallery-thumbs', {
//		imageContainerSel:      '#gallery-slideshow',
//		controlsContainerSel:   '#gallery-controls',
//		captionContainerSel:    '#gallery-caption',
//		renderSSControls:       false
//	});

// Hides the divs as soon as the DOM is ready
//	$('.hidden-text').hide();
	
// Toggles an image on clicking the link 
//	$('a#foo-toggler').click(function() {
//		$('#foo-hidden').slideToggle(600);
//		return false;
//	});
	
// Sets up Lightbox for image thumbnails
	$('.photo-gallery a.thumb').lightBox();

// Activates png fix for IE	
	// $('img[@src$=.png]').ifixpng();
//	$(document).pngFix();
	
});