jQuery(document).ready(function($){

$('div.paging ul li').hover(function(){
	$(this).addClass('hover');
	$(this).children('ul').slideDown('fast');
	
	}, function(){
		$(this).removeClass('hover');
		$(this).children('ul').slideUp('fast');
	});

(function ($) {
// VERTICALLY ALIGN 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('padding-top', mh);
	});
};
})(jQuery);

if ($('body').height() > 900) {
	var bhm = $('body').height();
	$('div.global').css('height', bhm-202);
	$('div.global').css('padding','0');
	$('div.jcarousel-container').vAlign();
};



















































});
