// ANDRE HARRY JS
$(function(){
	$.fn.supersized.options = {  
		startwidth: 1000,  
		startheight: 664,
		vertical_center: 1,
		slideshow: 0,
		navigation: 1,
		transition: 1 //0-None, 1-Fade, 2-slide top, 3-slide right, 4-slide bottom, 5-slide left
	};
	$('#supersize').supersized(); 
});	

$(document).ready(function() {
   $("#tips .close a").click(function(){
	   $.ajax({
			url: basepath+'/ajax/closetips',
			success: function(data) {
				$("#tips").fadeOut("slow");
			}
	   });
	   return false;
   });
});


