
function popGallery(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=420,height=420,left = 30,top = 40');");
}


function pop640(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=400,height=60,left = 80,top = 80');");
}

function pop500(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=510,height=510,left = 80,top = 80');");
}

function pop350(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=450,height=60,left = 320,top = 280');");
}

$(document).ready(function(){
	/***** CLICK TO EXPAND *****/
	$('.click').next('div').hide();
	$('.click').click(function(){
		$(this).next('div').slideDown();
	})
	/***** CLICK TO EXPAND *****/
	$('.click2').next('p').hide();
	$('.click2').toggle(function(){
		$(this).next('p').slideDown();
	},function(){
		$(this).next('p').slideUp();
	})
});
