jQuery.noConflict();
(function($) {
$(function(){
		   
		   
	//トップページレンタカー会社で選ぶ

	$("#top_c_sitei_box li div").mouseover(function(){
										 
	$(this).css("cursor","pointer");
	$(this).css("border","2px solid #3b64cb");
	});
	
	$("#top_c_sitei_box li div").click(function(){
		window.location=$(this).find("a").attr("href");											   
		return false;											   
	});
	
	$("#top_c_sitei_box li div").mouseout(function(){
										 
	$(this).css("border","2px solid #cccccc");
	});		   
		

	//車種指定一覧リスト

	$("#tab_carlineup_panel ul li").mouseover(function(){
										 
	$(this).css("cursor","pointer");
	$(this).css("border","2px solid #72aaf6");
	});
	
	$("#tab_carlineup_panel ul li").click(function(){
		window.location=$(this).find("a").attr("href");											   
		return false;											   
	});
	
	$("#tab_carlineup_panel ul li").mouseout(function(){
										 
	$(this).css("border","2px solid #ffffff");
	});
	
	
	

	//沖縄自動車道インターチェンジリスト
	
	
	$("#ic_listbox li div.padding_li").mouseover(function(){
										 
	$(this).css("cursor","pointer");
	$(this).css("border","2px solid #ff4200");
	});
	
	$("#ic_listbox li div.padding_li").click(function(){
		window.location=$(this).find("a").attr("href");											   
		return false;											   
	});
	
	$("#ic_listbox li div.padding_li").mouseout(function(){
										 
	$(this).css("border","2px solid #258210");
	});
	
	
	
	
	
	
	
	
	
		   
	});
})(jQuery);
