jQuery.noConflict();
jQuery(document).ready(function(){

 // toggles the slickbox on clicking the noted link  
	jQuery('.p1').click(function() {
	jQuery('.openwin').toggle(200);

	jQuery('body').addClass("tb");

    return false;
  });

    jQuery('.closewin').click(function(){
    jQuery('.openwin').toggle(400);
    jQuery('.closewin').removeClass("tb");
});





});




