$(function() {
    var maxBgImages = 4;
    var bgImage = 'corner_bg_'+(Math.floor(Math.random()*maxBgImages)+1)+'.jpg';
    $('#content-wrapper').css({
        'backgroundPosition':'top right',
        'backgroundRepeat':'no-repeat',
        'backgroundImage':'url(http://lasninastextiles.com/images/'+bgImage+')'
    });
    
    $('img[title]').tooltip({
        effect:'slide'
    });
    
    $('#page-ads li.wholesale').click(function(e) {
        window.location.href = 'mailto:info@lasninastextiles.com';
        e.preventDefault();
    });
    
    $('#header-logo').click(function(e) {
        window.location.href = 'http://lasninastextiles.com';
        e.preventDefault();
    });
});

$(window).load(function() {
    $('#product-container').isotope({
  		itemSelector:'.product'
   	});
    $('#photo-container').isotope({
	    itemSelector:'.photo'
    });
})

