(function($) {
  var cache = [];
  // Arguments are image paths relative to the current page.
  $.preloadImages = function(items) {
    for (var i in items) {
      if($(items[i][0]).length > 0)
      {
        var cacheImage = document.createElement('img');
        cacheImage.src = 'img.php?img=' + items[i][1];
        cache.push(cacheImage);
        cacheImage.src = 'img.php?img=' + items[i][2];
        cache.push(cacheImage);
      }
    }
  }
})(jQuery)

$(document).ready(function() {

 if(logged_in)
 {
  var items = [
  ["#header .line1 #item_login a img","my_account","my_account_sel"],
  ["#header .line1 #item_shopping_bag a img","shopping_bag","shopping_bag_sel"],
  ["#header .line2 #item1 a img","what_is_new","what_is_new_sel"],
  ["#header .line2 #item2 a img","swimwear","swimwear_sel"],
  ["#header .line2 #item3 a img","cover_ups","cover_ups_sel"],
  ["#header .line2 #item4 a img","designers","designers_sel"],
  ["#header .line2 #item_about a img","about","about_sel"],
  ["#header .line2 #item_contact a img","contact","contact_sel"],
  ["#bottom_menu #item_customer_service a img","customer_service","customer_service_sel"],
  ["#bottom_menu #item_twitter a img","twitter","twitter_sel"],
  ["#bottom_menu #item_facebook a img","facebook","facebook_sel"],
  ["#bottom_menu #item_blog a img","blog","blog_sel"],
  [".menu-categories-list2 #img_modify_profile","modify_profile","modify_profile_sel"],
  [".menu-categories-list2 #img_order_history","order_history","order_history_sel"],
  [".menu-categories-list2 #img_log_out","log_out","log_out_sel"]
  ];
 } else {
  var items = [
  ["#header .line1 #item_login a img","login","login_sel"],
  ["#header .line1 #item_shopping_bag a img","shopping_bag","shopping_bag_sel"],
  ["#header .line2 #item1 a img","what_is_new","what_is_new_sel"],
  ["#header .line2 #item2 a img","swimwear","swimwear_sel"],
  ["#header .line2 #item3 a img","cover_ups","cover_ups_sel"],
  ["#header .line2 #item4 a img","designers","designers_sel"],
  ["#header .line2 #item_about a img","about","about_sel"],
  ["#header .line2 #item_contact a img","contact","contact_sel"],
  ["#bottom_menu #item_customer_service a img","customer_service","customer_service_sel"],
  ["#bottom_menu #item_twitter a img","twitter","twitter_sel"],
  ["#bottom_menu #item_facebook a img","facebook","facebook_sel"],
  ["#bottom_menu #item_blog a img","blog","blog_sel"],
  [".menu-categories-list2 #img_modify_profile","modify_profile","modify_profile_sel"],
  [".menu-categories-list2 #img_order_history","order_history","order_history_sel"],
  [".menu-categories-list2 #img_log_out","log_out","log_out_sel"]
  ];
 }
 
 jQuery.preloadImages(items); 
 
/*
  $("#header .line2 #item_about a img").bind("mouseenter",function(){
      $(this).attr("src",'skin1/images/navigation/about_sel.jpg');
    }).bind("mouseleave",function(){
      $(this).attr("src",'skin1/images/navigation/about.jpg');
    });  
 
  $("#header .line2 #item_contact a img").bind("mouseenter",function(){
      $(this).attr("src",'skin1/images/navigation/contact_sel.jpg');
    }).bind("mouseleave",function(){
      $(this).attr("src",'skin1/images/navigation/contact.jpg');
    });  
 */

 var i;
 for(i in items) 
 {
   if($(items[i][0]).length > 0)
   {
     //alert(items[i][0]+':'+items[i][2]+':'+items[i][1]);
     $(items[i][0]).bind("mouseenter",{img: items[i][2]}, function(event){
         if($(this).attr('class').indexOf("no_rollover")==-1)
         {
          $(this).attr("src",'img.php?img=' + event.data.img);
         }
       }).bind("mouseleave",{img: items[i][1]},function(event){
         if($(this).attr('class').indexOf("no_rollover")==-1)
         {
          $(this).attr("src",'img.php?img=' + event.data.img);
         }
       });  
   }
 }

});

/*$(document).ready(
function()
{
	$("#nlink_294").click(
	function()
	{
		alert("go");
		window.location = "http://www.sirenecollection.com/SALE-ITEMS";
	});
	
	$("#nlink_293").click(
	function()
	{
		window.location = "http://www.sirenecollection.com/BEST-SELLERS";
	});
});*/

function new_img(n,id)
{
	$("#"+id).attr("src","/skin1/images/navigation/"+n);
}
