$(document).ready(function() {

	$("#product_tabs a").click(function() {
		$("#product_tabs a").removeClass("active_tab");
		$(this).addClass("active_tab");
		$(".showhide").hide();
		$("#"+ $(this).attr("rel")).fadeIn();
	});
	
	$("#jumpmenu").change(function() {
		window.location = $(this).val();
	});
	
	$(".section_small_inner").mouseover(function() {
		$(this).css("background", "#DFF4FD");
	}).mouseout(function() {
		$(this).css("background", "#fff");
	});

});
