$(document).ready(
	function(){
	
		   //the transparent fading effect
//		   if ($("#transparent_div").length > 0) {
//		      $("#transparent_div").fadeTo(6000, 0); 
//                 }






		   //position the scollers for the right img gallery
		   positionScoller();
	}
);


$(window).bind('resize', function() {
  positionScoller();
})


function positionScoller(){
	//position the scollers for the right img gallery
	if (($("#right_part_scoller_wrapper").length >0) &&($("#right_part").length >0)){			    
	      pos = $("#right_part").offset();  
	      width = $("#right_part").width();
	      
	      //show the menu directly over the placeholder
	      $("#right_part_scoller_wrapper").css( { "left": (pos.left + width-50) + "px", "top":pos.top + "px" } );
	      $("#right_part_scoller_wrapper").show();
	
	}
}
