/**
 * @author author
 */

/* ::Enable Javascript-enabled stylesheet */
var head_css = $('<link rel="stylesheet" href="presentation/css/js-enabled.css" type="text/css" media="screen" />').appendTo($('head')[0]);

/* -------------------------------------- */


/* ::Global Vars */


/* -------------------------------------- */


/* ::Document Ready function Callers  */
$(document).ready(function(){
	
	FnGMap.init();
	//FnTweets.init();
	//FnClickOutside.init();
	//FnLightbox.init();

	
});
/* -------------------------------------- */

/* ::Default Functions */
FnDefault = {
	init:function() {}	
	
	
	/* -------------------------------------- */
}

/* ::Gmap Functions 

*/
FnGMap = {
	init:function() {		
		$('#google-map-1').hide();	
		/*
$('<div></div>')
			.attr('id', 'gmap-1')
			.text('oi')
			.insertAfter('#google-map-1');
			
			$('<iframe></iframe>')
				.attr('width', '425')
				.attr('height', '350')
				.attr('src', 'http://www.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Oude+Bredaseweg+4,+4872+Etten-Leur,+The+Netherlands&amp;sll=1.30496,103.8521&amp;sspn=0.011413,0.018303&amp;ie=UTF8&amp;hq=&amp;hnear=Oude+Bredaseweg+4,+4872+Etten-Leur,+Noord-Brabant,+The+Netherlands&amp;ll=51.576803,4.640522&amp;spn=0.007095,0.018303&amp;z=14&amp;iwloc=r0&amp;output=embed')
				.appendTo('#gmap-1');	
*/			
	
		//$('#google-map-1').hide();
		//alert('oi');
	}	
	
	
	/* -------------------------------------- */
}



/* ::Lightbox */
FnLightbox = {
	init:function() {
	
	$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
	}	
	
	
	/* -------------------------------------- */
}

