// ========= (c)2011 :: html & css & jquery coding :: RIK - www.csska.com  =========



// =========================================================================  logos & imgs
$(function(){

//	$("a#logo").hover(
//		function() {
//			$(this).find('span').css('display','block');
//			$(this).find('span').stop().animate({"opacity": '1'}, 400);
//		},
//		function() {
//			$(this).find('span').stop().animate({"opacity": '0'}, 700, function() {
//				$(this).find('span').css('display','none');
//			});
//		}
//	);
	
	$(".frame1, .frame2, #carousel li").hover(
		function() {
			$(this).find('img').stop().animate({"opacity": '.6'}, 200);
		},
		function() {
			$(this).find('img').stop().animate({"opacity": '1'}, 200);
		}
	);
	
});


// =========================================================================  jCarouselLite

$(function() {
	if ($('#carousel').length>0) {
		jQuery('#carousel').jcarousel({
			auto: 3,
			wrap: 'circular',
			animation: 500,
			scroll: 1
		});
	};
});


