/* js for package: std-layout */



/*-------------------------------------------------------------------------------------*/
/*    DOCUMENT READY                   */
/*-------------------------------------------------------------------------------------*/

$(document).ready(function() {   
	$("#main-menu a").dropShadow({left: -1, top: -2, color: "#000", opacity: 0.2, blur: 2}); 
	
	
	//$("#page-content").dropShadow({left: 0, top: 0, color: "#000", opacity: 0.4, blur: 4});
	//$("h1").dropShadow({left: 3, top: 3, color: "#FF0000", opacity: 0.8, blur: 1});

});




/*-----------------------------------------------------------------------------------------*/
/*     JQUERY DOCUMENT READY          */
/*-----------------------------------------------------------------------------------------*/

$.fn.qtip.styles.red = {
	width: 200,
	padding: 5,
	background: '#FFF',
	color: '#333',
	textAlign: 'left',
	border: {
	         width: 3,
	         radius: 3,
	         color: '#FF9900'
	},
        tip: 'topLeft',
	name: 'dark'

}





$(document).ready(function() {


	$("#page-content a.qTip").each(function(){
		//$(this).css('position', 'absolute');
		
		//var is = $(this).find('.content img').attr('alt');
		//$(this).find('.content img').attr('src', is);
		//var ts = $(this).find('.content').html();
		
		var ts = $(this).next('.qTip_content_holder').html();
		
		
		$(this).qtip({  
   			content: '' + ts + '',
   			position: {
      				corner: {
         				target: 'bottomRight',
         				tooltip: 'topLeft'
      				}
  			 },
			style: 'red' 

		});
		
	
	});


	
});



/*-----------------------------------------------------------------------------------------*/
/*              */
/*-----------------------------------------------------------------------------------------*/


/*-----------------------------------------------------------------------------------------*/
/*              */
/*-----------------------------------------------------------------------------------------*/


/*-----------------------------------------------------------------------------------------*/
/*              */
/*-----------------------------------------------------------------------------------------*/



