$j = jQuery.noConflict();

			$j(window).load(function(){	
			if($j('#grpFeatured_Featured1_0_linkImage_0').height() <= 210){$j('#grpFeatured_Featured1_0_linkImage_0').height('211')}; 		
			if($j('#grpFeatured_Featured2_0_linkImage_0').height() <= 210){$j('#grpFeatured_Featured2_0_linkImage_0').height('211')};
			if($j('#grpFeatured_Featured3_0_linkImage_0').height() <= 210){$j('#grpFeatured_Featured3_0_linkImage_0').height('211')};
		});

				
		$j().ready(function(){
		
			table = $j("table:eq(0)"); 
			$j(table).colorize();

			$j('.iLikePlayer').bind("click",function(e){e.stopPropagation();});
			$j('a').bind("click",function(e){e.stopPropagation();});
			
			$j('.remove').parent().hide();
			$j('.remove').parent().prev().attr({colSpan:'2'}); 
			//$j('.container').show();

    			//$j('#bcad').prepend($j('#grpAD1'));

			$j(".module").each(function(index,val){$j(this.parent).css("height", "auto")});

		});

		

	
	var loadModule = function(id, url)
	{
		id = "#"+id;
		$j(id).load(url,null,
			function(responseText, textStatus, XMLHttpRequest)
			{
				if (textStatus == 'success')
				{
					var ind = 0;
					var ind2 = 0;
					if (url.toUpperCase().indexOf('PAGE=') >= 0 && url.toUpperCase().indexOf('BOOK=') >= 0)
					{
						ind = responseText.toUpperCase().indexOf('TABLE')-1;
						ind2 = responseText.toUpperCase().lastIndexOf('TABLE')+6;
						url = url + "&c=" + c;
					}
					else
					{
						ind = responseText.toUpperCase().indexOf('BODY')-1;
						ind2 = responseText.toUpperCase().lastIndexOf('BODY')+5;
					}
					
					responseText = responseText.substring(ind,ind2);
					$j(id).html(responseText);
				}
				else
				{
					$j(id).hide();
				}
			});
	}
