function initOpenClose(){
	var _d = 500;
	var _holder = $('.slider');
	_holder.each(function(){
		var _this = $(this);
		var _opener = $('.opener', _this);
		var _slider = $('.slide-box', _this);
		_this.h = _slider.children().outerHeight(true);
		_opener.click(function(){
			var next = _holder.index(_this);
			var cur = _holder.index(_holder.filter('.open'));
				var _el = $(this);
				if(_this.hasClass('open')){
					_slider.animate({height: 0}, _d,function(){
						_this.removeClass('open');
					});
				}else{
					_slider.animate({height: _this.h}, _d,function(){
						_this.addClass('open');
					});
					_holder.filter('.open').find('.slide-box').animate({height: 0},_d,function(){
						$(this).parents('.open:eq(0)').removeClass('open');
					})
					if(cur > next){
						$('html').animate({scrollTop: _el.offset().top - _this.h/2 },_d)
						if($.browser.safari) $('body').animate({scrollTop: _el.offset().top - _this.h/2 },_d)
					}else{
						$('html').animate({scrollTop: _el.offset().top - _this.h/2 -_holder.find('.slide-box *:eq(0)').height()},_d)
						if($.browser.safari) $('body').animate({scrollTop: _el.offset().top - _this.h/2 -_holder.find('.slide-box *:eq(0)').height()},_d)
					}
				}
			return false;
		})
	})
};
$(document).ready(function(){
	initOpenClose();
});


//----------------From Here My Functions..
//PrettyPhoto
$(document).ready(function() {
    $("a[rel^='prettyPhoto']").prettyPhoto({
    //allowresize: true
});
});

function ClosePrettyPhoto() {
    $.prettyPhoto.close();
}
//This is the News jscroller Stuff
$(document).ready(function() {
    // Add Scroller Object
    $jScroller.add("#scroller_container", "#scroller", "up", 3, true);
    // Start Autoscroller
    $jScroller.start();
});
// Set Site as Homepage
function setHomepage() {
    if (document.all) {
        document.body.style.behavior = 'url(#default#homepage)';
        document.body.setHomePage('http://shlachli.co.il/');

    }
    else if (window.sidebar) {
        if (window.netscape) {
            try {
                netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
            }
            catch (e) {
                //alert("this action was aviod by your browser，if you want to enable，please enter about:config in your address line,and change the value of signed.applets.codebase_principal_support to true");
                //alert("כדי להפוך את שלח-לי לדף הבית:\n 1.גרור את לשונית העמוד אל האיקון 'בית' בדפדפן. \n 2.בחר 'כן' בחלון שיקפוץ. ");
                //	                      To make Yahoo! your homepage:
                //                            Drag Me  

                //                               1. Drag the "Y!" logo on the left and drop it onto the "House" icon on your browser.
                //                               2. Select "Yes" from the pop up window.

            }
        }
        var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components.interfaces.nsIPrefBranch);
        prefs.setCharPref('browser.startup.homepage', 'http://www.shlachli.co.il/');
    }
}
// Set Site In BookMarks
function bookmark() {
    var url = location.href;
    var title = document.title;

    if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
        window.external.AddFavorite(url, title);
    } else if (navigator.appName == "Netscape") {
        window.sidebar.addPanel(title, url, "");
    } else {
        alert("Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark");
    }
}


