//SHOW HIDE
$(document).ready(function() {
 
 
 // hides the slickbox as soon as the DOM is ready
  $('.showhide').hide();
 // shows the slickbox on clicking the noted link  
  $('.newsletter').click(function() {
    $('.showhide').show('slow');
    return false;
  });
 // hides the slickbox on clicking the noted link  
  $('.close').click(function() {
    $('.showhide').hide('fast');
    return false;
  });

/*** function when mouse pointer is over the portfolio thumbnail ***/
	  $('.rollover').hide();
	$('.content-box').hover(
		function() {
			$(this).find('.rollover').show('fast');
		}, function() {
			$(this).find('.rollover').hide('slow');
	});
});


	// $('.content-box').hover(
		//function() {
			//$(this).find('.rollover').css('display','block');
		//}, function() {
		//	$(this).find('.rollover').css('display','none');
	//});
