// JavaScript Document

$(document).ready(function() {
						   
	/* Hover link images */
	$("a[id^='indexImage']").hover(function(){
		var thisID = (this.id).split("-")[1];
		$("#indexHover-"+thisID).stop().animate({bottom:'0px'},{queue:false, duration: 300});
	}, function() {
		var thisID = (this.id).split("-")[1];
		$("#indexHover-"+thisID).stop().animate({bottom:'-40px'},{queue:false, duration: 300});
	});
	
	/* Top menu fix */
	$("#topMenu a").mouseover( function(){
		$(this).parent().find("span[class='hoverRight']").css("background-image","url(images/topMenu/right.png)");
	});
	
	$("#topMenu a").mouseout( function() {
		$(this).parent().find("span[class='hoverRight']").css("background-image","none");						   
	});
	
	
});
