/**
 * Clip-Bucket.com JS Functions File
 */
 
 var expire_time = 1,
		domain = 'mangoshare.com';
		
		
function ShowPopup() {
		var getCookie = $.cookie('popup');
		
		if(getCookie == '')
			alert('success')
}	

function ShowDetails(obj) {
	var $this = $(obj),
		  $this_id = $this.attr('rel');
		  $div = $("#"+$this_id);
	if($div.css('display') == 'none') {
		$div.show();
	}
}

function HideDetails(obj) {
	var $this = $(obj),
		  $this_id = $this.attr('rel');
		  $div = $("#"+$this_id);
		  $div.hide();
}
