/*
    Requires jQuery


*/
jQuery(document).ready(function() {
    $('#social-bookmarks ul li a').click(function(){
    	var url = this.href
    	if (this.rel!='') {
    		url = this.rel;
    	}
    	if ($(this).parent().hasClass('mini-win')) {
            window.open(url,'socialWin','status=yes,toolbar=no,menubar=no,scrollbars=yes,location=no,width=750,height=450');
    	} else {
            window.open(url,'socialWin');           
    	}
        return false;
    });
});
