jQuery(document).ready(function(){

	// My Account / Login Open
	//jQuery("#login").click( function() {jQuery("#cart").slideUp("fast");jQuery("#account").slideDown("fast");});  
	//jQuery("#my_account").click( function() {jQuery("#cart").slideUp("fast");jQuery("#account").slideDown("fast");});  

	// Account Close
	//jQuery("#account-close").click( function() {jQuery("#account").slideUp("fast");jQuery("#cart").slideDown("fast");});  

	// Login Close
	//jQuery("#login-close").click( function() {jQuery("#account").slideUp("fast");jQuery("#cart").slideDown("fast");});  

	// Shopping Bag Open	
	jQuery("#cart-bottom").click( function() {if (jQuery("#cart-content").is(":hidden")) {jQuery("#cart-content").slideDown("fast");}});  
	
	// Shopping Bag Close	
	jQuery("#cart-close").click( function() {jQuery("#cart-content").slideUp("fast");});  
	
	// Text Box Clearing
	jQuery("#keysrc").focus(function() { jQuery(this).val('');});
	jQuery("#subscribe").focus(function() {jQuery(this).val('');});
	
	// News Rotator
	//jQuery('#news').innerfade({animationtype: 'slide',speed: 1000,timeout: 3000,type: 'sequence',containerheight: '14px'});
	
	// Info Popup
	//jQuery("#info").click( function() {if ($("#info-details").is(":hidden")) {$("#info-details").show();} else {$("#info-details").hide();}});  
		
        // Navigation Menu
     jQuery('ul.sf-menu').superfish();

});
function shoppingCartClick(){

	if ($("#cart-content").is(":hidden")) {
		$("#cart-content").slideDown("fast");
		$("#saved-bottom").slideDown("fast");
		
		if (pageName == 'productDetail') {
			var element = document.getElementById('lineItemCount');
			if (element != null) {
				if (element.value >= 2)
					showOrHideOneDropDowns('select-quantity','hidden');
			}
		}
	}
}

function closeShoppingCart(){
	$("#saved-bottom").slideUp("slow");
	$("#cart-content").slideUp("fast");
	
	if (pageName == 'productDetail') {
		showOrHideOneDropDowns('select-quantity','visible');
	}
}
