$('html').removeClass('no-js');

$('#mainNav .first').bind('mouseover', function(){
	$(this).addClass('activeHo');
}).bind('mouseout', function(){
	$(this).removeClass('activeHo');
})

$('.modAccordion ul').accordion({ autoHeight: false });

$('.modImgGalleryInline li').bind('click', function(){
	var $that = $(this);
	$that.siblings().removeClass('active');
	$that.addClass('active').parent().prepend($that);
})
