jQuery.noConflict();

/* TOP MENU */

jQuery(document).ready(function(){ 
    
	jQuery("ul.sf-menu").supersubs({ 
		minWidth:    12,                                // minimum width of sub-menus in em units 
		maxWidth:    27,                                // maximum width of sub-menus in em units 
		extraWidth:  1                                  // extra width can ensure lines don't sometimes turn over 
		                                                // due to slight rounding differences and font-family 
	}).superfish({ 
		delay:       300,                               // delay on mouseout 
		animation:   {opacity:'show',height:'show'},    // fade-in and slide-down animation 
		speed:       'fast',                            // faster animation speed 
		autoArrows:  true,                             	// disable generation of arrow mark-up 
		dropShadows: false                              // disable drop shadows 
	}); 

});

/*      FANCYBOX   

jQuery(document).ready(function(){
	jQuery("a.fancy").fancybox();
	jQuery("a.video").click(function() {
		jQuery.fancybox({
			'padding'             : 10,
			'autoScale'   		  : false,
			'transitionIn'        : 'none',
			'transitionOut'       : 'none',
			'title'               : this.title,
			'width'               : 640,
			'height'              : 385,
			'href'                : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'                : 'swf',    // <--add a comma here
			'swf'                 : {'allowfullscreen':'true'} // <-- flashvars here
		});
		return false;
	});
});
*/
/*  IE 7 + 8 fix for @font */

jQuery(document).ready(function(){ 
	
	if (jQuery.support.objectAll == false) {
		var pngimgurl = "<?php bloginfo('stylesheet_directory'); ?>/images/hIEfix.png"; // Set PNG location
		jQuery("h2, h3, .sf-menu > li > a").css({
        	filter: 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=" + pngimgurl + ",sizingMethod=crop',
			zoom: '1'
		});
	}
	
});
