﻿/*
   SITE: coffins.co.uk
   FILE: site.js
   GEEK: Phil Sherry
   DATE: 2009-05-20
   
   Copyright 2009 Fawthrop McLanders. All rights reserved.
*/

$(document).ready(function() {

   // search box copy
    $("#searchBox input.search_input").focus(
		function() {
		    if (this.value == "Search site") { this.value = ""; }
		}).blur(
		function() {
		    if (this.value == "") { this.value = "Search site"; }
		}
	);
	
	// stops the text rot on headings in IE7
	//$(".IE #news h4").css("background-color","#f8f9f9");
	
	// quick hack to shorten the Services menu, as IE7 needs a width on the Products dropdown
	//$(".IE7 .rmLink:contains('Services')").siblings().children().css({'padding':'0','width':'200px'});
	
	// take the border-bottom off linked images
	$("img").parent().css("border-bottom","none");
	
});