/* noscript
-------------------------------------------------------------------------------------------------*/
document.write('<style type="text/css">body #all {position: relative;top: 0px!important;}</style>');

/* rollover
-------------------------------------------------------------------------------------------------*/
jQuery(document).ready(function($) {
	var postfix = '_o';
	$('img.imgover').not('[src*="'+ postfix +'."]').each(function() {
		var img = $(this);
		var src = img.attr('src');
		var src_o = src.substr(0, src.lastIndexOf('.'))
			+ postfix
			+ src.substring(src.lastIndexOf('.'));
		$('<img>').attr('src', src_o);
		img.hover(
			function() {
				img.attr('src', src_o);
			},
			function() {
				img.attr('src', src);
			}
		);
	});
});
