if(typeof(SQnP)=="undefined"||!SQnP)
{
	var SQnP = {
	
		HideAllPreviews : function()
		{
			var p;
			if( ( p = $(".previewul li") ).length > 0 )
			{
				p.each(function(){ $(this).addClass("hide"); });
			};
		},
	
		PreviewNavigation : function()
		{
			var r, p;
			if( ( ( r = $(".previewNavBullet") ).length > 0 ) &&
				( ( p = $(".previewul li") ).length > 0 ) )
			{
				var t = $(".titledesc strong");
				var s = $(".summarydesc");
				var q = $(".projecttype");
								
				r.each(function(i, v){
					
					$(this).bind('mouseover',function(){
						if(typeof(p[i]) != "undefined")
						{
							var el 		= $(p[i]);
							var arrMeta = el.attr("title").split("|");
							t.text( arrMeta[0] );
							s.text( arrMeta[1] );
							q.text( arrMeta[2] );
							SQnP.HideAllPreviews();
							el.removeClass("hide");
						};
					});
				});
			};
		}
	};
	
	$(document).ready(function(){
		SQnP.PreviewNavigation();	
	});
};
