

(function($) {
 /**
 * equalizes the heights of all elements in a jQuery collection
 * thanks to John Resig for optimizing this!
 * usage: $("#col1, #col2, #col3").equalizeCols();
 */

 $.fn.equalizeCols = function(){
 var height = 0,
 reset = $.browser.msie ? "1%" : "auto";

 return this
 .css("height", reset)
 .each(function() {
 height = Math.max(height, this.offsetHeight);
 })
 .css("height", height)
 .each(function() {
 var h = this.offsetHeight;
 if (h > height) {
 $(this).css("height", height - (h - height));
 };
 });

 };

})(jQuery);

$(document).ready(function() {
 $("#column-1, #column-2, #column-3, #column-4").equalizeCols();
});


$(document).ready(function(){
  $("div.span-6 h3 a").bigTarget({
	hoverClass: 'over', // CSS class applied to the click zone onHover
	clickZone : 'div:eq(0)' // jQuery parent selector
  });
});

$(document).ready(function(){
  $("div#media p a").bigTarget({
	hoverClass: 'over', // CSS class applied to the click zone onHover
	clickZone : 'div:eq(0)' // jQuery parent selector
  });
});

$(document).ready(function(){
  $("div#newsletter p a").bigTarget({
	hoverClass: 'over', // CSS class applied to the click zone onHover
	clickZone : 'div:eq(0)' // jQuery parent selector
  });
});

$(document).ready(function() {
 $("#newsletter").corner("10px");
});


