function vIE(){return (navigator.appName=='Microsoft Internet Explorer')?parseFloat((new RegExp("MSIE ([0-9]{1,}[.0-9]{0,})")).exec(navigator.userAgent)[1]):-1;}

$(document).ready(function(){
						   
  /*  on load animation for home, contact, sitemap buttons */					   
  var homeBtn    = $('#ir_btnHome');
  var sitemapBtn = $('#ir_btnSitemap');
  
  homeBtn.hide().css('marginTop', '63px');
  sitemapBtn.hide().css('marginTop', '63px');
  
  homeBtn.animate({opacity: "show", marginTop: "82px"}, 400, function(){
      sitemapBtn.animate({opacity: "show", marginTop: "82px"}, 400);
  });

  
  /*  on hover animation for home, contact, sitemap buttons */					   
  $('#ir_menuTopLeft a').hoverIntent(function(){
	$(this).next('span').animate({opacity: "show", top: "-18px"}, 300);									
  }, function(){
	$(this).next('span').animate({opacity: "hide", top: "-10px"}, 200);  
  });
  
  /* click-open for product page */
  $('#ir_menu li ul.ir_menuIR').hide();
  
  var container = $('#ir_container');
  
  if (container.hasClass('menwear')) {
	  $('ul.menwear').show();
  }
  else if (container.hasClass('ladiesFashion')) {
	  $('ul.ladiesFashion').show();
  }
  else if (container.hasClass('luggage')) {
	  $('ul.luggage').show();
  }
  else if (container.hasClass('locations')) {
	  $('ul.locations').show();
  }
  
  $('.hasSub').click(function(){
	$(this).next('ul.ir_menuIR').toggle();
	return false;
  });
  
  /* logo link */
  $('#ir_logo').click(function(){ window.location = '/index.html'; });

});