// Leave the line below; it's for http://jshint.com
/*global Cufon, jQuery, document*/


//Cufon.replace('#selector', {fontFamily: 'fontName'});


// Only one "document ready"
jQuery(function($) {
	// jQuery is aliased to $ in this function,
	// even if plugins try to overwrite it

	//if ($().pluginName) {
	//	// safe to use pluginName as it has been loaded
	//}
	// For some reason chrome makes the parent div height increase on click, but then shrink again if you inspect the element in chrome, not sure why. Adding this corrects this problem for chrome, but makes its dissappear in ie, so have excluded it in ie.
	$('.select-interest select').click(function() {
		if($.browser.msie) {
			// Keep on rollin'	
		} else {
			$(this).parent().parent().height(40);
		}
	});














});

