$(document).ready(function(){
    $("a[rel^='prettyPhoto']").prettyPhoto();
    jQuery("#carousel").jcarousel({
        scroll: 1,
        auto:6,
        initCallback: mycarousel_initCallback,
        buttonNextHTML: null,
        buttonPrevHTML: null
    });
    $(document).pngFix();
    
    $('.caw').vAlign();
   
});



(function ($) {
$.fn.vAlign = function() {
	return this.each(function(i){
	var ah = $(this).height();
	var ph = $(this).parent().height();
	var mh = (ph - ah) / 2;
	$(this).css('margin-top', mh);
	});
};
})(jQuery);

function mycarousel_initCallback(carousel) {
    jQuery('.Numarator li a').bind('click', function() {
        carousel.scroll(jQuery.jcarousel.intval(jQuery(this).text()));
        return false;
    });
};

