$(document).ready(function(){
	$('a.bodybuilding_image').mouseover(function(){
		$('a.bodybuilding_link').addClass('hover');		  
	});
		$("a.bodybuilding_image").mouseout(function(){
			$('a.bodybuilding_link').removeClass('hover');
		});
	$('a.men_image').mouseover(function(){
		$('a.men_link').addClass('hover');		  
	});
		$("a.men_image").mouseout(function(){
			$('a.men_link').removeClass('hover');
		});
	$('a.women_image').mouseover(function(){
		$('a.women_link').addClass('hover');		  
	});
		$("a.women_image").mouseout(function(){
			$('a.women_link').removeClass('hover');
		});
	$('a.medical_image').mouseover(function(){
		$('a.medical_link').addClass('hover');		  
	});
		$("a.medical_image").mouseout(function(){
			$('a.medical_link').removeClass('hover');
		});
	if(!$.browser.msie || $.browser.msie && $.browser.version.substr(0,1) >= 7) {
		$('a.bodybuilding_link').mouseover(function(){
			$('a.bodybuilding_image').addClass('hover');		  
		});
			$("a.bodybuilding_link").mouseout(function(){
				$('a.bodybuilding_image').removeClass('hover');
			});
		$('a.men_link').mouseover(function(){
			$('a.men_image').addClass('hover');		  
		});
			$("a.men_link").mouseout(function(){
				$('a.men_image').removeClass('hover');
			});
		$('a.women_link').mouseover(function(){
			$('a.women_image').addClass('hover');		  
		});
			$("a.women_link").mouseout(function(){
				$('a.women_image').removeClass('hover');
			});
		$('a.medical_link').mouseover(function(){
			$('a.medical_image').addClass('hover');		  
		});
			$("a.medical_link").mouseout(function(){
				$('a.medical_image').removeClass('hover');
			});
	}
	$('#featured_cycle').cycle({ 
		fx: 'fade', 
		speed:  1200 
	 });
	$.preloadImages = function(){
	  for(var i = 0; i<arguments.length; i++){
		jQuery("<img>").attr("src", arguments[i]);
	  }
	}
	$.preloadImages('images/top_nav_link_left.png','images/top_nav_link_content.png','images/top_nav_link_right.png','images/left_col_nav_hover.jpg');
	$('div#latest_content').load('ajax/latest_news.php');
	$("div.option a.middle").bigTarget({
		hoverClass: 'hover',
		clickZone : 'div:eq(0)'
	});
	$('a#latest_news').addClass('active');
	$('span#show_links').removeClass('large_arrow_down');
	$('span#show_links').addClass('large_arrow_right');
	$('div#quick_links_sub').addClass('none');
	
	$("a#latest_news").click(function(){
		$('div#latest_content').load('ajax/latest_news.php');
		$('a#latest_blogs').removeClass('active');
		$('a#latest_news').addClass('active');
	});
	$("a#latest_blogs").click(function(){
		$('div#latest_content').load('ajax/latest_blogs.php');
		$('a#latest_news').removeClass('active');
		$('a#latest_blogs').addClass('active');
	});
	$("#show_links").click(function(){
		if($(this).attr("class") == 'large_arrow_right'){
			$(this).removeClass('large_arrow_right');
			$(this).addClass('large_arrow_down');
			$("div#quick_links_sub").slideDown('slow');
		}else{
			$(this).removeClass('large_arrow_down');
			$(this).addClass('large_arrow_right');
			$("div#quick_links_sub").slideUp('slow');
		}
	});
	$(".interests a").click(function(){
		window.location = '/set_interest.php?interest='+$(this).attr('id')+'&goto='+window.location.href;
	});
	$("#checkout").click(function(){
		window.location = '/checkout.php';
	});
	$("a.photo").click(function(){
		var current = new Array();
		current = $('.change').attr('src').split('/'); 
		var old = current[0]+'/'+current[1]+'/'+current[2];
		if(old != $(this).attr('href')){
			$('.change').fadeOut('slow');
			$('.change').hide();
			$('.left_col.alter').html('<img src="'+$(this).attr('href')+'" alt="Photo" class="change" style="display:block;margin:20px auto 0px auto;" />');
			if(!$.browser.msie || $.browser.msie && $.browser.version.substr(0,1) >= 7) {
				$('.change').hide();
				$('.change').fadeIn('medium');
			}
		}
		return false;
	});
	$("form input.product_quantity").keypress(function (e){
		if( e.which!=8 && e.which!=0 && (e.which<48 || e.which>57)){
			return false;
		}
	});
	$("form input#zip").keypress(function (e){
		if( e.which!=8 && e.which!=0 && (e.which<48 || e.which>57)){
			return false;
		}
	});
	$("form input#cc_num").keypress(function (e){
		if( e.which!=8 && e.which!=0 && (e.which<48 || e.which>57)){
			return false;
		}
	});
	$("form input#cc_ccv").keypress(function (e){
		if( e.which!=8 && e.which!=0 && (e.which<48 || e.which>57)){
			return false;
		}
	});
	
	if($(".right_col.categories").height() < $(".left_col").height()){
		$(".categories").height($(".left_col").height()-108)																   
	}
	if($(".left_col.alter").height() > $(".right_col.b").height()){
		$(".product_info.noscroll").height($(".left_col").height()-100)																   
	}
	setTimeout(showMessage,500);
	function showMessage(){
		if($('.error').length > 0){
			$('.error').fadeIn('slow');
		}
		if($('.success').length > 0){
			$('.success').fadeIn('slow');
		}
	}
	
	setTimeout(closeMessage,6000);			
	function closeMessage(){
		if($('.error').length > 0){
			$('.error').fadeOut('slow');
			setTimeout("$('.error').remove()",5000);
		}
		if($('.success').length > 0){
			$('.success').fadeOut('slow');
			setTimeout("$('.success').remove()",5000);
		}	
	}
	confirm_prompt = function(text,url) {
		if (confirm(text)) {
		  window.location = url;
		}
	}
});