$(function(){
	$(".rounded").corner("10px");
	
	$(".button")
	.mouseover(function(){
		$(this).css({"background" : "url(/css/images/heading_repeat.gif)"})
	})
	.mouseout(function(){
		$(this).css({"background" : "url(/css/images/nav_repeat.gif)"})
	});
	
	$(".enlarge_image_box a").colorbox({photo:true});
	
	$(".buyBoxes a").hover(
	function(){
		$(this).find(".title").show();
		$(this).find("img").hide();
	},
	function(){
		$(this).find(".title").hide();
		$(this).find("img").show();
	});
	
	$(".howhear").change(function(){
		if(this.value=="Other")
			$(".howeverCustom").show();
		else {
			$(".howeverCustom").hide();
		}
	});
});