
$(document).ready(function () {
    submenuClass();
    carousel();
	fancyBox();
});


function fancyBox() {
	
	
	$("a#img1").fancybox({
		'titlePosition'	:	'inside'
	});
	
	$("a#img2").fancybox({
		'titlePosition'	:	'inside'
	});
	
	$("a#img3").fancybox({
		'titlePosition'	:	'inside'
	});
	
}

function submenuClass() {
    if ($('#submenu ul').length == 0) {
        $('#submenu').addClass('noUl')
    }
}

function carousel() {

    //single image
    if ($('#cycle img.sigleImg').length > 0) {
        $('#cycle img.sigleImg').show().css('display', 'block')//.css('cursor', 'default');
        $('#nxtCycle, #prvCycle').hide();
        //return
    }

    $('#cycle').cycle({
        fx: 'fade',
        speed: 500,
        timeout: 4500,
        next: '#prv',
        prev: '#nxt',
        after: onAfter,
        before: onBefore
    });

    $("#prv, #nxt, #cycle img").click(function () {
        $('#cycle').cycle('pause');
    })

    function onAfter(curr, next, opts) {
        var cpt = $(this).attr('cpt');
        if (cpt.length > 0) {
            $('#capt').fadeIn('fast', function () {
                if (jQuery.browser.msie) { this.style.removeAttribute("filter") }
            });
            $('#capt').html(cpt);
        }

    }

    function onBefore(curr, next, opts) {
        $('#capt').fadeOut('fast', function () {
            $(this).empty();
        });
    }

}


	
	


