
 $(document).ready(function() {
	if($.browser.msie){
	  $("div.my-comp-r_b").css("top","115px"); 
	}

	jQuery.preloadImages = function()
	{
		for(var i = 0; i<arguments.length; i++)
		{
			jQuery("<img>").attr("src", arguments[i]);
		}
	}

	rollover_shown = null;
	$("img.our_comp").hover(
	  function (event) {
		if(rollover_shown !=null)
		 {
			if($.browser.msie)
			{
				$(rollover_shown).hide();
			}
			else
			{	
			 	$(rollover_shown).fadeOut("fast");
			}
		 }
		 var ovid = "div#ov_" + this.id; 
	     rollover_shown = ovid;
		 
		if($.browser.msie)
		{
	 		$(ovid).show();
		}
		else
		{
			$(ovid).fadeIn(300);
		}

        /* get the position of rollovers */
		 var offset = $(this).offset();
	     var off_left = offset.left - 35;
	     var off_top = offset.top - 140;
	     $(ovid).css("top",off_top);
	     $(ovid).css("left",off_left);	
	  },
	  function () {}
	);
	$("p.rout").hover(function(event){
		if(rollover_shown != null) {
			if($.browser.msie)
			{
				$(rollover_shown).hide();
			}
			else
			{	
			 	$(rollover_shown).fadeOut("fast");
			}
			
			rollover_shown=null;
		}		
	},function(){});



});



