var cale="http://www.roadbugs.co.uk/";
	
function roll_over(img_name, img_src)
   {
   document[img_name].src = img_src;
   }


$(function() {
		$('#service_uk_main').hover(function () //mouseover
			{
				
				$(this).css('background-image', 'url('+cale+'img/service_uk_over.png)');
				$(this).css('width', '170px');
				
			
				
				$(this).html('<div class="submenu1" style=""><a href="sameday_uk.html"><div id="sameday_uk" style="cursor:pointer;height: 21px;background-color: #12aedb;color: white;border: 1px solid white;" onmouseover="this.setAttribute(\'style\',\'cursor:pointer;height: 21px;background-color: #a40aa1;color: white;border: 1px solid white;\');" onmouseout="this.setAttribute(\'style\',\'height: 21px;background-color: #12aedb;color: white;border: 1px solid white;\');">Sameday Uk</div></a><a href="taylormade_uk.html"><div id="taylormade_uk"style="cursor:pointer;height: 21px;background-color: #12aedb;color: white;border: 1px solid white;" onmouseover="this.setAttribute(\'style\',\'cursor:pointer;height: 21px;background-color: #a40aa1;color: white;border: 1px solid white;\');" onmouseout="this.setAttribute(\'style\',\'height: 21px;background-color: #12aedb;color: white;border: 1px solid white;\');">Taylormade Uk</div></a></div>');
			},function(){ //mouseout
			
			if (get!='sameday_uk'&&get!='taylormade_uk')
				{
					$(this).css('background-image', 'url('+cale+'img/service_uk.png)');
					
				
				}
				$(this).html('');
			});
		
		
		$('#service_ro_main').hover(function () //mouseover
			{
				
				$(this).css('background-image', 'url('+cale+'img/service_ro_over.png)');
				
				$(this).css('width', '170px');
				
			
				
				$(this).html('<div class="submenu1"><a href="parcel_delivery.html"><div id="parcel_delivery" style="cursor:pointer;height: 21px;background-color: #12aedb;color: white;border: 1px solid white;" onmouseover="this.setAttribute(\'style\',\'cursor:pointer;height: 21px;background-color: #a40aa1;color: white;border: 1px solid white;\');" onmouseout="this.setAttribute(\'style\',\'height: 21px;background-color: #12aedb;color: white;border: 1px solid white;\');">Parcel Delivery</div></a><a href="other_loads.html"><div id="other_loads"style="cursor:pointer;height: 21px;background-color: #12aedb;color: white;border: 1px solid white;" onmouseover="this.setAttribute(\'style\',\'cursor:pointer;height: 21px;background-color: #a40aa1;color: white;border: 1px solid white;\');" onmouseout="this.setAttribute(\'style\',\'height: 21px;background-color: #12aedb;color: white;border: 1px solid white;\');">Other Loads</div></a></div>');
			},function(){ //mouseout
			if (get!='parcel_delivery'&&get!='other_loads')
			{
				$(this).css('background-image', 'url('+cale+'img/service_ro.png)');
			}
			$(this).html('');
			});
			
			
		$('#quotes_main').hover(function () //mouseover
			{
				
				$(this).css('background-image', 'url('+cale+'img/quotes_over.png)');
				$(this).css('width', '170px');
				
			
				
				$(this).html('<div class="submenu1"><a href="exact_delivery.html"><div id="exact_delivery" style="cursor: pointer;height: 21px;background-color: #12aedb;color: white;border: 1px solid white;" onmouseover="this.setAttribute(\'style\',\'cursor: pointer;height: 21px;background-color: #a40aa1;color: white;border: 1px solid white;\');" onmouseout="this.setAttribute(\'style\',\'height: 21px;background-color: #12aedb;color: white;border: 1px solid white;\');">Exact Delivery</div></a><a href="simple_quote.html"><div id="simple_quote"style="cursor: pointer;height: 21px;background-color: #12aedb;color: white;border: 1px solid white;" onmouseover="this.setAttribute(\'style\',\'cursor: pointer;height: 21px;background-color: #a40aa1;color: white;border: 1px solid white;\');" onmouseout="this.setAttribute(\'style\',\'height: 21px;background-color: #12aedb;color: white;border: 1px solid white;\');">Simple Quote</div></a></div>');
			},function(){ //mouseout
			if (get!='exact_delivery'&&get!='simple_quote')
			{
				$(this).css('background-image', 'url('+cale+'img/quotes.png)');
			}
			$(this).html('');
			});
	});