/**
 * @copyright (c) 2009 GARREIS Unternehmensgruppe
 */
var pgs = {
	
	duration:1000
}
$(document).ready(function() {
	
	$('#content #content_right .pgs div.cssToggle').removeClass('cssToggle');	
	$('#content #content_right .pgs div').mousedown( function() {		
		window.location.href= $(this).parent().find('a.pgs_link')[0].href;	
	});	
	$('#content #content_right .pgs').hover(		
		function() {					
			var myId= $(this)[0].id.split("_")[1];
			var mySId= (myId==1) ? 2 : 1;									
			$('#content #content_right #pgs_'+myId+' div').stop(true,true).fadeIn(pgs.duration);									
			$('#content #content_right #pgs_'+mySId+' div').stop(true,true).fadeOut(pgs.duration);				
			$('#content #content_right #pgs_'+myId+'').stop(true,false).fadeTo(pgs.duration,1);
			$('#content #content_right #pgs_'+mySId+'').stop(true,true).fadeTo(pgs.duration,0.4);			
		},
		
		function() {
			var myId= $(this)[0].id.split("_")[1];
			var mySId= (myId==1) ? 2 : 1;	
			$('#content #content_right #pgs_'+myId+' div').stop(true,true).fadeOut(pgs.duration);									
			$('#content #content_right #pgs_'+mySId+' div').stop(true,true).fadeOut(pgs.duration);				
			$('#content #content_right #pgs_'+myId+'').stop(true,true).fadeTo(pgs.duration,1);									
			$('#content #content_right #pgs_'+mySId+'').stop(true,true).fadeTo(pgs.duration,1);				
		}		
	);		
});