// JavaScript Document

$(document).ready(function(){
						   
  if($('body').attr('id') != 'page_11') {
						   
	  $('#footer_nav a').hoverIntent(function(){					
		$(this).css({opacity: '1'}).next('span').animate({opacity: 'show', top: '-7px'}, '200');								
	  }, function(){  
		$(this).animate({opacity: '0.6'}, 'slow').next('span').animate({opacity: 'hide', top: '0px'}, 'slow');	
	  });
	  
	  $('#news-box .block').hoverIntent(function(){
		$(this).children('a').animate({color: '#334b80'}, '100');
		$(this).animate({backgroundColor: '#d9e5ff'}, '100');						   
	  }, function(){
		$(this).children('a').animate({color: '#5278cc'}, '300');
		$(this).animate({backgroundColor: '#ebf1ff'}, '300');
	  });
	  
	  $('#footer_validator').hoverIntent(function(){
		$(this).animate({opacity: '1'}, 'fast');
		$(this).children('span').animate({opacity: 'show', top: '30px'}, 'fast');
	  }, function(){
		$(this).animate({opacity: '0.5'}, 'slow');
		$(this).children('span').animate({opacity: 'hide', top: '15px'}, 'show');
	  });
  }
  
  /*** product pages ***/
/*  $('#thumb a').click(function(){
    var largePath = $(this).attr('href');
	$('#largeImage img').attr('src', largePath);	 
	
	return false;
  });*/
  $("a.lightbox").lightbox();

});
