﻿$(document).ready(function(){
	
	/*FaceLift [Start]*/
	FLIR.init( { path: 'lib/facelift-1.2/' } );
	$("h1, h2, h3, #header li").each( function() { FLIR.replace(this); } );
	/* FaceLift [End] */
	
	/* Menu [Start] */
    $("#header li").mouseout(function(){
      	$(this).css("background-color", "transparent");
	}).mouseover(function(){
		$(this).css("background-color", "#e0e0df");
    });
    /* Menu [Start] */

	/* Banner Home [Start] */	
	$("#banner").cycle({
		next: "#next",
		prev: "#prev"
	});
	/* Banner Home [Start] */
	
});