	
	$(document).ready(function() {
		$('.smartbox').smartbox();
		
		$('.facebook').click(fbs_click);
	});
	
	
	
//FB SHARE
function fbs_click(event) 
{
	event.preventDefault();
	var u = location.href;
	var t = document.title;
	window.open('http://www.facebook.com/sharer.php?u=' + encodeURIComponent(u) + '&t=' + encodeURIComponent(t), 'sharer', 'toolbar=0,status=0,width=636,height=446');
}
