JsFixes = {};

JsFixes.fixCaptions = function ()
{
	var leadimage = jq(".newsImageContainer a img");
	var width = leadimage.width();
	jq(".newsImageContainer p").css({'max-width' : width});
};

JsFixes.languageSelectors = function()
{
	var elems = jq("#portal-languageselector li").click(function(){window.location = jq(this).find('a').attr('href');});
};

JsFixes.fixImageLinks = function ()
{
	var siteURL = "http://"+top.location.host.toString();
	//alert(siteURL);

	jq(".pageWrapper a img[src^='"+siteURL+"']").parent().each(function()
	{
		if(jq(this).attr('id') != 'parent-fieldname-leadImage' && jq(this).attr('id') != 'parent-fieldname-image')
		{
			jq(this).attr('href', jq(this).attr('href')+'/view');
		}
	});
};

JsFixes.fixSquareThumbnails = function ()
{
	jq(".album_image").each(function ()
	{
		var image = jq(this).find("img:first-child");
		var width = image.width(); //get image width
		var height = image.height(); //get image height
		
		image.css({'margin-top': '-'+height/2+'px', 'margin-left': '-'+width/2+'px', 'top' : '50%', 'left' : '50%', 'position':'relative','display':'block'});
	});
};

//Prevents player from disapearing for audio files, not activated due to http://flowplayer.org/forum/5/13228 flowplayer bug
JsFixes.fixFlowPlayerAudio = function ()
{
	elems = jq(".audio").flowplayer().each(function ()
	{
		this.getControls().enable({'autoHide': 'never'});
	});
}

JsFixes.runFixes = function ()
{
	//Add new fixes to this list to activate them.
	JsFixes.fixCaptions();
	JsFixes.fixImageLinks();
	JsFixes.languageSelectors();
};


JsFixes.runSpecialFixes = function ()
{
	//Add new fixes to this list to activate them and ONLY RUN WHEN THE FULL PAGE IS LOADED
	JsFixes.fixSquareThumbnails();
};

//run all the fixes when the DOM is completely loaded and the special ones when everything is loaded;
jq(window).load(function () {JsFixes.runSpecialFixes();});
jq(document).ready(function () {JsFixes.runFixes();}); 

