jQuery(document).ready(
	function(){
		jQuery.fn.exists = function(){return jQuery(this).length>0;}
		
		if($("div#topbannerarea").exists()) {
			$('div#topbannerarea').cycle({ 
			    fx:     'fade', 
			    speed:   800, 
			    timeout: 4500, 
			    next:   '#frontpage_fade_next', 
			    prev:   '#frontpage_fade_prev', 
			    pause:   0
			});
			
			$("div#frontpage_fade_next img, div#frontpage_fade_prev img").hover(
				function() {
					var src = $(this).attr("src").replace("_off", "_on");
					$(this).attr("src", src);
				}, 
				function() {
					var src = $(this).attr("src").replace("_on", "_off");
					$(this).attr("src", src);
				}
			);
			
			
		}
		
		if($("select#country").exists()) {
			$("select#country").change(function () {
				$("select#country option:selected").each(function () {
					if($(this).attr('value')!='-1') {
						window.location = "/dealers/?country="+$(this).attr('value');
					}
				});
				
			});
		}
		
		if($("form#dealers_form").exists()) {
			$("form#dealers_form").change(function () {
				$("form#dealers_form").submit();
				
			});
		}
		
	});
