/**
 * @Copyright CSSJockey
 * @Website: http://www.cssjockey.com
 * This message must stay intact, read more about terms of use here: http://www.cssjockey.com/terms-of-use
 * Do not change anything in this document unless you know what you are doing.
 */
$(document).ready(function(){
/**** REMOVE SEPARATOR FROM NAVIGATION ***************************/
	$("#navigation ul li:last").css("background-image", "none");
	
/**** CYCLE PLUGIN SETTINGS ***************************/
	$('.cycle').cycle({ 
	    fx:      'scrollUp', 
	    speed:    400, 
	    timeout:  3000 
	});
/**** CONTACT FORM WIDGET SETTINGS ***************************/
 $("div.message")
 	.fadeIn(500)
	.animate( { opecity:"100" }, 1500 )
	.fadeOut(500);
/**** TABLE SETTINGS WIDGET SETTINGS ***************************/$("a.infolink span").hide();
$("a.infolink").mousemove(function(e){
    $(this).parent().find("span").fadeIn("fast");
});

$("a.infolink").mouseout(function(){
    $(this).parent().find("span").fadeOut("fast");
});
	
})