$(document).ready(function() {

 $('#coninfo').jqm();
 
 $('#contactfoot').click(function() {
 		$('#coninfo').jqmShow();
 	});
   
   $(".navtab").click(function() {
   		if($(this).attr("id") != 'contact'){
   		location.href = ($(this).children()[0].href);
   		}
   	 });
 	$('#contact').click(function() {
 			$('#coninfo').jqmShow();
 	});
	
	$('#slider').cycle('fade');
	
	$(".smallslider").jCarouselLite({
    circular: true,
    vertical: true,
    auto: 1500,
    speed: 1000,
    pauseOnHover: true,
    btnNext: "#up",
	btnPrev: "#down"
	});
 	
 	 $('#up').mouseover(function() {
			$(this).attr("src", "img/arrowup.png");
 		});

	 	 $('#up').mouseout (function() {
			$(this).attr("src", "img/arrowup1.png");
 		});
 		
 	 	 $('#down').mouseover(function() {
			$(this).attr("src", "img/arrowdn.png");
			$('#up').attr("src", "img/arrowup1.png");
 		});

	 	 $('#down').mouseout (function() {
			$(this).attr("src", "img/arrowdn1.png");
 		});
});
