﻿
$(document).ready(function () {
	var strYear = new Date();
	strYear = strYear.getFullYear();

	$(".CopyrightDiv").html('Copyright &amp; 2003-' + strYear + ' by Soro. ELY REID');
	
});
$(window).load(function() {
	$('.ContainerSlideIn').css('width','150px');
	
	//$(".ContainerSlideIn").effect("scale", { direction: 'horizontal' }, 150);
});


// bookmark site 
function bookmarksite(title, url) {
	if (window.sidebar)								// firefox
		window.sidebar.addPanel(title, url, "");
	else if (window.opera && window.print) {			// opera
		var elem = document.createElement('a');
		elem.setAttribute('href', url);
		elem.setAttribute('title', title);
		elem.setAttribute('rel', 'sidebar');
		elem.click();
	}
	else if (document.all) // ie
		window.external.AddFavorite(url, title);
}
