$(document).ready(function(){
	var _footerBanners = $('#footer a img');
	_footerBanners.hover(function(){
		$(this).css('marginTop',-45);
	}, function(){
		$(this).css('marginTop',0);	
	});
	
	// gallery scroll **********************************************************
	if (typeof $().galleryScroll == 'function') {
		$('div.gallery').galleryScroll({
			btPrev:'a.prev',
			btNext:'a.next',
			holderList:'div.holder',
			circleSlide:false
		});
	}
});
