
$(document).ready(function(){
						   
$('#tabs-nav div ul li a').before('<span class="bullet"></span>');
	
//$('#tabs-nav').tabs({ fxFade: true, fxSpeed: 'fast',fxAutoHeight: true });
$('#tabs-nav').tabs({ fxFade: true, fxSpeed: 'fast' });

 $("#s").focus(function () {
 		$(this).val('');
  }); 
 
// Footer to top scroll
scrolltop();

	
}); //close doc ready


function scrolltop() {
	$('a.scroll').click(function(){
		$.scrollTo( '#webislove', 500 );
		return false;
	}
	);
} 

