// JavaScript Document
// PNG fix
jQuery(document).ready(function() {
	if( jQuery.browser.msie && (jQuery.browser.version == "6.0") ) {
		DD_belatedPNG.fix('.sogeprom_png');
	}
});
function jRotate(elt) {
	var oCurPhoto = $('#'+elt+' div.current');
	var oNxtPhoto = oCurPhoto.next();
	if (oNxtPhoto.length == 0)
		oNxtPhoto = $('#'+elt+' div:first');

	oCurPhoto.removeClass('current').addClass('previous');
	oNxtPhoto.css({ opacity: 0.0 }).addClass('current').animate({ opacity: 1.0 }, 1000,
		function() {
			oCurPhoto.removeClass('previous');
			});
}






