$(document).ready(function() {
	$('#container').pngFix(); 								// For the benefit of IE6, this adds transparency to all png images
	$('#banner_pictures').cycle({
		fx: 'uncover', 									// Cheers Mike!
		// cleartype:  1, 								// enable cleartype corrections
		direction: 'up',									// Direction of the effect
		delay:    -2000,									// 2 second gap please
		cssBefore: { opacity: 1 },							// Solid image coming in
		animOut:   { opacity: 0 }							// Fade away on out. Screwy in IE6 and IE7
	});
	
	
	// This next bit opens all links in a new window UNLESS it starts with www.hambodesign.com.au or hambodesign.com.au
	// Credit goes to Andrew Fox, address or business unknown...
	
	//$("a[href^='http://']").not("a[href^='http://hambodesign.com.au']").not("a[href^='http://www.hambodesign.com.au']").click(function(){
	//	window.open(this.href,'external');
	//	return false;
	//});
	
	
	// This controls the side scrolling of each portfolio section.
	
	$('#portfolio_images') 
		.after('<div id="portfolio_tabs">') 
		.cycle({ 
		fx:     'scrollLeft', 
		speed:  'fast', 
		timeout: 0, 
		pager:  '#portfolio_tabs' 
	});

});