//PAGE LOAD
$(document).ready(function(){
	//SET TITLE = ALT FOR CROSS PLATFORM STUFF
	$("img").each(function(){
		if  ( ($(this).attr("title") == undefined) || ($(this).attr("title") == "") )  {
			if  ( ($(this).attr("alt") != undefined) && ($(this).attr("alt") != "") )  {
				$(this).attr( {title: $(this).attr("alt") });	
			}
		}
	});	
	
	});