jQuery(document).ready(function($) {
	$(".sliders").slideshow({
	  width      : 536,
	  height     : 277
	});
	
	
	$( "#login_form" ).dialog({
			autoOpen: false,
			height: 187,
			width: 364,
			resizable: false,
			draggable: false,
			modal: true,
			buttons: { 
				Cancel: function() {
					$( this ).dialog( "close" );
				},
				Submit: function(){
					//please hook the auth function here
				}
			}
		});
	
	/*$(".login").click(function(){
		$("#login_form").dialog("open");
		return false;
	});*/
	
	$(".scrollToElement").click(function(){
		
		var targetElement = $(this).attr("href");
		
		$('html,body').animate({ 
			scrollTop: $(targetElement).offset().top }, { 
			duration: 'slow', easing: 'swing'
		});
		
		return false;	
	});
	
	$('#tweet.scrollbar').tinyscrollbar();
	
});
