// JavaScript Document

jQuery(document).ready(function(){

  jQuery('#main-nav > li > a').each(function(i,item) {
    if(jQuery('.children',jQuery(item).parent()).length>0)
      jQuery(item).click(function() {return false;}).css('cursor','default');
  });
			   
	Cufon.replace('h1,h2,h3,.title, .extra, .number');
			   
	jQuery('img,html,li,a,*').pngFix( );
	
	
	 
	 jQuery("a[rel^='prettyPhoto']").prettyPhoto();
	 
		jQuery(".fadeimage img").hover(function(){
		jQuery(this).stop().fadeTo("medium", 0.5); // This should set the opacity to 100% on hover
		},function(){
		jQuery(this).stop().fadeTo("slow", 1.0); // This should set the opacity back to 60% on mouseout
		});	
});



