// Dom
$(document).ready(function(){
	$("#meetTheGirls li a").fadeTo("fast", 0.7);
	$("#meetTheGirls li a").hover(function(){
	$(this).fadeTo("fast", 1.0);
	},function(){
		$(this).fadeTo("fast", 0.7);
	});
	
	if ( $('.picSwitcher').length ) {
		// Fading slideshow on homepage
		$('.picSwitcher').cycle({
			fx: 'fadeZoom', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			speedIn: 700,
			speedOut: 300
		});
	}

	// IE6 PNG Fix
	if (jQuery.browser.msie) { if(parseInt(jQuery.browser.version) == 6) $("#viewBlog").pngfix(); }
}); 

// Highslide
hs.align = 'center';
hs.transitions = ['expand', 'crossfade'];
hs.outlineType = 'rounded-white';
hs.fadeInOut = true;





