/*
+------------------------------------------------------------------------------------------+
* COMPANY: Raven Developers 2009
+------------------------------------------------------------------------------------------+
* FILE INFO: Site wide Java Script functions
+------------------------------------------------------------------------------------------+
* WEBSITE: http://www.ravendevelopers.com
+------------------------------------------------------------------------------------------+
* Portions created by Anirudh K. Mahant are Copyright of Raven Developers (C) 2009.
+------------------------------------------------------------------------------------------+
* COPYRIGHT NOTICE:
* The original author(s) retain all the copyrights of this file.
* Portions created by Anirudh K. Mahant (original developer) are Copyright of Raven Developers (C) 2009.
* Portions may contain jQuery JavaScript framework developed by John Resig and other
* community members. More info at http://docs.jquery.com/About
* jQuery LICENSE:
* Copyright (c) 2008 John Resig (jquery.com)
* Dual licensed under the MIT (MIT-LICENSE.txt)
* and GPL (GPL-LICENSE.txt) licenses.
+------------------------------------------------------------------------------------------+
*/
function URLDecode(psEncodeString){
  // Create a regular expression to search all +s in the string
  var lsRegExp = /\+/g;
  // Return the decoded string
  return unescape(String(psEncodeString).replace(lsRegExp, " "));
}
jQuery(document).ready(function(){
  jQuery('div.contact-form br').remove();
	jQuery('div.inquire-villa-form br').remove();
	jQuery("div.producten-display .producten-row li a, ul.producten-row li .prod-img a, div.cycle-contents .hp4 a, div.populaire-container div.pp-img a, div.h2-wrapper div.h2-block-left a, div.h2-wrapper div.h2-block-right a").hover(
    function(){
      jQuery(this).animate({opacity: 0.5},200);
      jQuery(this).animate({opacity: 1},100);
    },
    function(){
      jQuery(this).animate({opacity: 1},100);
    }
  );
});