// JavaScript Document

$(document).ready(function(){
		   
	$("#header img").hover(function(){
									$(this).attr("src", $(this).attr("src").split(".").join("roll."));
														  
									
									},function(){
												$(this).attr("src",$(this).attr("src").split("roll.").join("."));
		   
									});
	
	
	$(".servicetable td").css({
									   "border-bottom-width":"none",
									   "border-bottom-style":"none",
									   "border-bottom-color":"none",
									   "background-color":"#fff"
									   
									    });
	$(".tabledesign td").css({
									   "border-bottom-width":"1px",
									   "border-bottom-style":"solid",
									   "border-bottom-color":"#666",
									   "font-size":"14px",
									   "padding-top":"5px",
									   "padding-bottom":"5px"
									   
									    });
	$(".tabledesign tr:even").css({
									   "background-color":"#ccc"
									    });
		
	$(".portfoliomainareatext .firstcol").css({
									   "color":"#663366",
									   "font-size":"14px",
									   "font-weight":"bold",
									   "border-right-width":"1px",
									   "border-right-style":"solid",
									   "border-right-color":"#666"
									   
									   
									    });
	$(".tabledesign td:contains(free)").css("background-color","red");
	
	
	
});



