jQuery(document).ready(function(){
//Text resize
function resizeText(size) 
{
  jQuery('.adjustable-font').css('font-size', size+'px');
  return false;
}

//Search
jQuery(function() {
   jQuery("#search-field").focus(function() {
       jQuery(this).attr('value','');
   });
});

//Popups
	var profiles =
    // if more than one pop-up on a site has the same size you can create a profile
    // use the profile name in the REL of the link
    // in the below example, the REL would be "consent"
	{
		consent:
		{
			height:600,
			width:600,
			status:1
		}
	};

   	



  });
