//$(function(){		
jQuery(document).ready(function(){
  if (jQuery.browser.safari && document.readyState != "complete"){
    //console.info('ready...');
    setTimeout( arguments.callee, 100 );
    return;
  }
	
	//
	// EXTERNAL & BLANK LINKS
	//$('a.external,a.blank,#page a[href^="http:"]').attr('target','_blank'); 
	$('a.external,a.blank').attr('target','_blank'); 
	//$('a[href$=".pdf"]').addClass('pdf');	
	//$.backstretch('img/bg-stretch.gif',{hideUntilReady:true});
	//$.backstretch('img/bg-stretch.gif');
	//$('.c').corners();	
	
	$('#slideshow img:not(:first)').hide();
	//log($('#slideshow img:not(:first)').width());
	$('#slideshow').slideshow({		timeout:4000	});
	
	$("#gallery a").slimbox({counterText:'{x} / {y}'});
	
});	 // END INIT JQUERY	
function log($s) {
    if (window.console && window.console.log)
     window.console.log($s);
  };
function debug($obj) {
	if (window.console && window.console.debug)
	 window.console.debug('debug: %o', $obj);
};
