$(function() {
	$('.modal').nyroModal();
	$('img.thumb, .catalogue div.thumb').hover(
		function() {$(this).stop(true, true).switchClass('', 'thumb-hover', 500)},
		function() {$(this).stop(true, true).switchClass('thumb-hover', '', 500)}
	);
});
function widen() {
	if ($('body').hasClass('hasRightSide')) {
		return false;
	}
	$('.layout-border').animate( {width : 975}, 1000);
	$('.layout-wrapper').animate( {width : 960}, 1000);
	$('body').switchClass('', 'hasRightSide', 0);
	return false;
}
function tighten() {
	if (!$('body').hasClass('hasRightSide')) {
		return false;
	}
	$('.layout-border').animate({width: 795}, 1000, '', function() {
		$('.layout-wrapper').width(780);
		$('body').removeClass('hasRightSide');
	});
	return false;
}
