$(document).ready(function(){

	$('.hide').hide();
	$('.hidden').hide();

	

	$(".colorbox").each(function(){
		divToLoad = $(this).next('.colorbox-content');
		$(this).colorbox({contentInline:divToLoad, contentWidth:"500px"});
	});

	//$('#left').html($('#left').html().replace(/plugimagetxt/, "<img src='/wp-content/themes/throwshapes/images/plugs.jpg' />"));

	$("a[href='/contact.html']").colorbox({fixedWidth:"80%", fixedHeight:550, iframe:true});

	$('#searchform input#s').click(function(){
		if ($(this).val()=='search'){
			$(this).attr('value','');
		}
	});
	
	$('#nav a img').hover(
		function () {
			$(this).attr('src',$(this).attr('src').replace(/(.*?).jpg/,"$1_hover.jpg"));
		}, 
		function () {
			$(this).attr('src',$(this).attr('src').replace(/(.*?)_hover.jpg/,"$1.jpg"));
		}
	);
	

});