Показать сообщение отдельно
  #3 (permalink)  
Старый 06.12.2010, 17:27
Аватар для dimaan777
Аспирант
Отправить личное сообщение для dimaan777 Посмотреть профиль Найти все сообщения от dimaan777
 
Регистрация: 07.11.2010
Сообщений: 66

<script language="javascript">
	$(document).ready(function()
		{
		$('.information_table').css('height','150px');
		$('.it_td1 > div:first').css('backgroundImage','url(img/bg-a_div-t.jpg');
		$('#downl > div').css('marginLeft','100px');
		$('#downl > div > h3').css('marginLeft','-10px');
		$('#downl > div:last').css('marginRight','100px');
		$('#downl > div:last > h3').css('marginLeft','-40px');
		$('#ov').hide();
		$('#marks').hide();
		$('#comm').hide();
		$('#downl > div > a:has(img)').fadeTo(1,0.7).mouseover(function() {$(this).fadeTo(10,1.5);}).mouseleave(function() 
		{$(this).fadeTo(100,0.7);});
		$('.it_td1 > div:first').click(div1);
		$('.it_div2').click(div2);
		$('.it_div3').click(div3);
		$('.it_div4').click(div4);
		});
		
		function div1() {  
		  $(this).css('backgroundImage','url(img/bg-a_div-t.jpg)');
		  $('.it_td1 > div:gt(0)').css('backgroundImage','url(img/bg_div-t.jpg)');		
		  $('#ov,#marks,#comm').fadeOut(10);
		  $('#downl *').fadeIn(150);
		  $('#downl > div').css('marginLeft','100px');
		  $('#downl > div > h3').css('marginLeft','-10px');
		  $('#downl > div:last').css('marginRight','100px');
		  $('#downl > div:last > h3').css('marginLeft','-40px');		  		  	  	  
		} 
		
		 function div2() {
		  $(this).css('backgroundImage','url(img/bg-a_div-t.jpg)');
		  $('.it_td1 > div:gt(1),.it_td1 > div:lt(1)').css('backgroundImage','url(img/bg_div-t.jpg)');		  		
		  $('#downl *,#marks,#comm').fadeOut(10);
		  $('#ov').fadeIn(150);		  
		}
		
		function div3() {
		  $(this).css('backgroundImage','url(img/bg-a_div-t.jpg)');
		  $('.it_td1 > div:gt(2),.it_td1 > div:lt(2)').css('backgroundImage','url(img/bg_div-t.jpg)');		  		
		  $('#downl *,#ov,#comm').fadeOut(10);
		  $('#marks').fadeIn(150);		  
		} 
		
		function div4() {	
		  $(this).css('backgroundImage','url(img/bg-a_div-t.jpg)'); 
		  $('.it_td1 > div:lt(3)').css('backgroundImage','url(img/bg_div-t.jpg)');			   
		  $('#downl *,#ov,#marks').fadeOut(10);
		  $('#comm').fadeIn(150);		  		  		  
		}
    </script>
Ответить с цитированием