function openBrWindow(theURL,winName,features) {
	window.open(theURL,winName,features);
}

$(document).ready(function(){

$(".entry img").hover(function(){
$(this).stop().fadeTo("medium", 0.3); // This should set the opacity to 100% on hover
},function(){
$(this).stop().fadeTo("slow", 1.0); // This should set the opacity back to 60% on mouseout
});
});


$(document).ready(function(){
		$('html,*, li').pngFix( );
	});
	
$(document).ready(function(){
		$("a[rel^='prettyPhoto']").prettyPhoto();
	});	


jQuery(document).ready(function(){
	var phi_effect_options = jQuery("meta[name=phi_effect_options]").attr('content');
	var phi_slider_time_out = jQuery("meta[name=phi_slider_time_out]").attr('content');

$(document).ready(function() {
    $('#slides').cycle({
		fx: phi_effect_options, // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		easing: 'easeout',
		cleartype:  1,		
		timeout: phi_slider_time_out,
		prev:    '.back',
       	next:    '.forward',
		pause:   1 
			
			
	});
});
});

