// JavaScript Document

var myimages=new Array()
var imgchecker = screen.colorDepth;
function preloadimages(){
	for (i=0;i<preloadimages.arguments.length;i++){
			myimages[i]=new Image()
			myimages[i].src=preloadimages.arguments[i]
		}
	}
	
//DOM LISTO PARA EJECUTAR EVENTOS CON JQUERY - JOSE GOMEZ
$(document).ready(function(){
	  preloadimages('images/bg_html.jpg','images/bt_search_over.gif','images/bg_header.png','images/bg_footer.png','images/flash.png','images/services.png','images/bt_findstore_over.gif','images/bt_myaccount_over.gif','images/bt_track_over.gif','images/bt_customer_over.gif','images/bt_shopping_over.gif','images/bt_home_over.gif','images/bt_services_over.gif','images/bt_promotions_over.gif','images/bt_news_media_over.gif','images/bt_franchise_over.gif','images/bt_contact_over.gif','images/bt_about_over.gif','images/bt_online_over.gif','images/bt_find_store_over.gif','images/bt_bookmark_over.gif','images/bt_bookmark.gif','images/bt_email_over.gif','images/bt_joinmailing_over.gif','images/bt_website_over.gif','images/bt_ordering_over.gif','images/bt_warranty_over.gif','images/bt_shipping_over.gif','images/bt_privacy_over.gif','images/bt_term_use_over','images/bt_site_map_over.gif','images/bt_automotive_over.png','images/bt_residential_over.png','images/bt_commercial_over.png','images/bt_marine_over.png','images/bt_frachinfo_over.png','images/bg_drop_over.png','images/bt_check_out_over.png','images/bt_view_cart_over.png','images/bt_previous_over.gif','images/bt_next_over.gif');
	  //MM_preloadImages
	  
	  //FOCUS EN EL CAMPO SEARCH
	  $('#text_search').focus();
	  
	  //OCULTAR DROPDOWNS AL PASAR EL MOUSE POR ENCIMA DEL CONTENIDO
	  $('#content,#internal').mouseover(
					function(){
							   MM_showHideLayers('services','','hide','services_level2','','hide','services_level3','','hide','services_level4','','hide','residential','','hide','commercial','','hide','marine','','hide','promotions','','hide','downloads','','hide','car_truck','','hide','news_media','','hide','photogallery','','hide','franchise_info','','hide','contact_us','','hide','contact_info','','hide','jobs_send','','hide','about_us','','hide','tint_w_diference','','hide','our_guarantee','','hide','online_store','','hide','automotive-part','','hide','automotive-part','','hide','tint_w_diference','','hide','our_guarantee','','hide','franchise_info','','hide', 'franchise_program','','hide','tint_world_wel','','hide','hi_tech_toys','','hide','fran_oporunities','','hide','support_system','','hide','get_more','','hide','fran_contact','','hide',  'tint_w_diference','','hide','our_guarantee','','hide','tint_overview','','hide','tint_Leadership','','hide','tint_store_service','','hide','tint_our_guarantee','','hide','tint_association_partners','','hide','tint_aqs','','hide');
								//document.getElementById('nav_services').src='images/bt_services.png'; 
								//document.getElementById('nav_promotions').src='images/bt_promotions.png';
								//document.getElementById('nav_new_media').src='images/bt_news_media.png';
								//document.getElementById('nav_franchising').src='images/bt_franchise.png';
								//document.getElementById('nav_contact').src='images/bt_contact.png'; 
								//document.getElementById('nav_about').src='images/bt_about.png';
								//document.getElementById('nav_onlinestore').src='images/bt_online.png';
							   });
	  
	
	  //COMPORTAMIENTOS EN LOS MENUS DEL LADO IZQUIERDO
	  //PONER CURSOR A LAS IMAGENES
	  $('div.pointers').mouseover(function(){ $('img').css({cursor:'pointer',lineheight:'0'}) });
	  //ANCHO DE LOS SUBMENUS
	  $('div.franch_1, div.franch_2, div.franch_3, div.franch_4, div.franch_5').css({width:'169px'});
	  //AGREGAR EFECTO DE SLIDE TOGGLE PARA LOS SUBMENUS
	  $('#automotive_cat,#franchisepro_cat,#opportunities_cat,#suppsys_cat,#getmore_cat').click(function(){
											$(this).next('div.franch_1').slideToggle(400);
											$(this).next('div.franch_2').slideToggle(400);
											$(this).next('div.franch_3').slideToggle(400);
											$(this).next('div.franch_4').slideToggle(400);
											$(this).next('div.franch_5').slideToggle(400);
											
										  });
	  //COMPORTAMIENTOS EN LOS MENUS DEL LADO DERECHO
	  //PONER CURSOR A LAS IMAGENES
	  $('div.pointers2').mouseover(function(){ $('img').css({cursor:'pointer',lineheight:'0'}) });
	  //ANCHO DE LOS SUBMENUS
	  $('div.about_11,#leadership2,#store3,#guarante4,#associations5,#faq6').css({width:'169px'});
	  //AGREGAR EFECTO DE SLIDE TOGGLE PARA LOS SUBMENUS
	  $('#overview,#leadership,#store,#guarante,#associations,#faq').click(function(){
											$(this).next('div.about_11').slideToggle(400);
											$(this).next('div.leadership2').slideToggle(400);
											$(this).next('div.store3').slideToggle(400);
											$(this).next('div.guarante4').slideToggle(400);
											$(this).next('div.associations5').slideToggle(400);
											$(this).next('div.faq6').slideToggle(400);
										  });
	  
	  
	 /* $('div#link_jhon').mouseover(function(){
		this.style.border-bottom='1px solid #000000';									  
		});	*/						  
	  $('div#link_jhon').click(function(){
		document.location="news.cfm";
		return false;
		});
	  
	});
