// JavaScript Document
$(document).ready(function(){
	var ltie7 =$.browser.msie && $.browser.version < 7;
	$('.transparantimg').hover(function(){
		if(!ltie7) {								
			$(this).attr('src' , $(this).attr('src').replace('_off' ,'_on' ) ) ;
		} else {
			$(this).css('filter', $(this).css('filter').replace('_off' ,'_on'));
		}
	  }, 
      function () {
		if(!ltie7) {								
			$(this).attr('src' , $(this).attr('src').replace('_on' ,'_off' ) ) ;
		} else {
			$(this).css('filter', $(this).css('filter').replace('_on' ,'_off' ));
		}  
     }
	);	
	$('.rolloverimg').hover(function(){
		$(this).attr('src' , $(this).attr('src').replace('_off' ,'_on' ) ) ;
	  }, 
	  function () {
			$(this).attr('src' , $(this).attr('src').replace('_on' ,'_off' ) ) ;
	 }
	);
});