/**
 * @author Michal S
 */

$(document).ready(function() {
    $('#mp-carousel').jcarousel({
		 auto:4,
        scroll:1,
        wrap: 'circular'
	 });
    $(function() {
    	$(".image").click(function() {
    	var image = $(this).attr("rel");
    	$('#image').hide();
    	$('#image').fadeIn('slow');
    	$('#image').html('<img id="fadein" src="' + image + '"/>');
    	return false;
    		});
    	});
	$('.portfolio li').hover(
		function() {
		$(this).find('img').animate({opacity:'0.9', backgroundColor:'#6CC1E0'}, 250);
		},
		function() {
		$(this).find('img').animate({opacity:'1', backgroundColor:'#ffffff'}, 250);

		}
	);
	/*
	 * TESTTSTS
	 */
});
