$(document).ready(function(){

	/*** General behaviours ***/
	/*************************/

		/* Browser detection */
		var ie6 = $.browser.msie && $.browser.version < 7;

		/* Add target attribute on external links */
		$("a[href^=http://]").click(function(){
			if (this.host.indexOf(window.location.hostname) == -1) {
				$(this).attr("target","_blank");
			}
		});


	
	/*** Visual enhancements ***/
	/**************************/


	/*** Form behaviours ***/
	/***********************/


}); 
