﻿$(document).ready(function() {
	/* Hide last border in top menu right */
	$(".top_right ul li:last").addClass("last");
    
    /* Apply the tooltips */
    $('.help[title]').tooltip({
        "delay": 300,
        "track": true,
        "fade": 1000,
        "showURL": false,
        "top": 15,
        "positionLeft": true,
        "left": -15
    });
    
    /* Apply the fancybox */
    $("a.fancybox[rel=product_item_pic_big]").fancybox({
		'overlayShow'	: false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span style="text-align:right; direction:rtl;" id="fancybox-title-over">' + (title.length ? title + ' &nbsp; ' : '') + (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
		}
    });
    $("a.fancybox").fancybox({
		'overlayShow'	: false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'titlePosition' 	: 'over'
    });
    
    /* Apply the defaultValue */
    $(".search_tb_text").defaultValue("חפש");
});

function popup(url) 
{
 params  = 'width='+screen.width;
 params += ', height='+screen.height;
 params += ', top=0, left=0'
 params += ', fullscreen=yes';

 newwin=window.open(url,'windowname4', params);
 if (window.focus) {newwin.focus()}
 return false;
}

