function openW(url) {var l=Math.floor((screen.width-600)/2);var t=Math.floor((screen.height-500)/2);var win=window.open(url,'fb','top='+t+',left='+l+',height=500,width=600,menubar=no,width=600,height=500,toolbar=no');if(parseInt(navigator.appVersion)>=4){win.window.focus();}return win}
$(document).ready(function(){
	$('.vieta').click(function(e){
		e.preventDefault();
		var obj=$(this).parent().find('ul').get(0);
		if($(obj).css('display')=='none'){$(obj).slideDown()}else{$(obj).slideUp()}
		$(this).blur();
	});
	
	$('.social>.facebook').click(function(e){
		openW('http://www.facebook.com/sharer.php?u='+encodeURIComponent('http://'+ssn)+'&t='+encodeURIComponent(sauklis));
		e.preventDefault();
		return 0
	});
	$('.social>.draugiem').click(function(e){
		openW('http://www.draugiem.lv/say/ext/add.php?title='+encodeURIComponent(sauklis)+'&link='+encodeURIComponent('http://'+ssn)+'&titlePrefix='+encodeURIComponent(location.host));
		e.preventDefault();
		return 0
	});
	$('.retweet').attr('target','_blank');
});
