$(document).ready(function(){
	//using jquery colorBox.js
	$("a[rel='picturefasade']").colorbox({transition:"elastic", width:"auto", height:"90%"});
	$(".youtubefasade").colorbox({iframe:true, innerWidth:425, innerHeight:344});
	
	$("#click").click(function(){ 
		$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
		return false;
	});
});