$(document).ready(function(){

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

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

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

	$('#searchform input#s').click(function(){
		if ($(this).val()=='search'){
			$(this).attr('value','');
		}
	});

});