// see http://www.campbellsdigitalsoup.co.uk/about/png-fix/ for documentation and updates

// Note: background positions are also redundant when using the fix as AlphaImageFilter
// only renders from the top left corner of the element.
// i.e. images will always need to have a background-position:top left; in CSS

$(document).ready(function(){
	// apply fix to all images on page
	$("img").ifixpng();
	// apply fix to all image elements that reference PNGs, or directly via IDs
	// $("img[@src$=png],#hcpfaq, #register").ifixpng();
	$("#hcpfaq, #hcpFAQs, #register, input#searchSubmit, #whatsnewcarousel .jcarousel-prev, #whatsnewcarousel .jcarousel-next").ifixpng();

});
