// JavaScript Document

$(function() {
 		
  $("#myController").jFlow({
    slides: "#mySlides",
    width: "495px",
    height: "255px",
    duration: 400
  });
		
  $("#main_content_left .carousel").jCarouselLite({
    btnNext: ".next",
    btnPrev: ".prev",
    speed:1000

  });
});
	
	

	
$(function() {
  $("#footer #DIVart").hover(function() {
    $("#infohover").animate({
      opacity: "show",
      top: "-80"
    }, "fast");

  }, function() {

    $("#infohover").animate({
      opacity: "hide",
      top: "-100"
    }, "fast");

  });
});
