jQuery(window).load(function() {
	
	// http://flex.madebymufffin.com
	
  	
	//fancybox popups
	
	/*
	jQuery("a.popup").fancybox({
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'easingIn'      : 'easeOutBack',
		'easingOut'     : 'easeInBack',
		'speedIn'		: 250,
		'speedOut'		: 250,
		'changeSpeed'	: 250,
		'overlayShow'	: false
	});
	*/
});

//document.ready

jQuery.noConflict();

 // DOM ready
jQuery(document).ready(function(){

		// carousel
	jQuery('#carousel').elastislide({
		speed : 1000,
		imageW 	: 174,
		minItems : 3,
		border : 0,
		margin : 20,
		easing : 'easeInOutQuad'
	});
	
	//superfish menus
	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 
	//	})
		.superfish({
			delay: 1000,		// one second delay on mouseout 
			animation: { 
				opacity: 'show' 		// opacity animation
			//	height: 'show'			// height animation 
			},	// fade-in and slide-down animation 
			speed: 250,											// faster animation speed. Set to 1 to disable 
			autoArrows: true	// disable generation of arrow mark-up  
	}); 
	
});

function openwin_print() {
	var iWidth = 920;
    var iHeight = 700; 
	var iTop = (window.screen.availHeight-30-iHeight)/2;
    var iLeft = (window.screen.availWidth-10-iWidth)/2;
	window.open ("inc/print.asp", "Print", "height="+iHeight+", width="+iWidth+", toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=no, status=no, top="+iTop+", left="+iLeft) 
} 
