﻿$(document).ready(function(){
$("a.tooltip").tooltip({cssClass:"tooltip-blue", delay:100, opacity:5});

$(".popup_box").hide();

});

function toggle_popUp(id,img){
$("#"+id).slideToggle();
}


function checkall(checkBox, theID){

var linkText=$('#'+theID).text();
if (linkText=="select all"){var theState="1";}

if(theState==1){
$('input[name='+checkBox+']').attr('checked', true);
$('#'+theID).text('clear selection');
}
else{
$('input[name='+checkBox+']').attr('checked', false);
$('#'+theID).text('select all');
}

}

