$(document).ready(function(){
	
	//apply ui tabs
	if($('ul#tabs').length > 0 ){ // check if element is on page
		$('ul#tabs').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
	}
	
	if($('form div.input').length > 0 ){ // check if element is on page
		//apply form field effect
		$('form div.input').inputfocus({
			bgColourFocus:'#EFFCFF',
			bgColour:'#FFFFFF',			
			animate:true
		});
	}
});