/*  */

var tb_pathToImage = "../css/thickbox/images/loadingAnimation.gif";
var tb_imgClose = "<img src='../css/thickbox/images/thickbox_close_square.gif' width='13' height='13' />";

$(document).ready ( function ()
{
	// submenus
	/*$('#menuLeft a').click ( function ()
	{
		$(this).blur ();
		
		if ( $(this).hasClass ( 'collapse' ) )
		{
			var collapse = $(this).siblings ( '.submenu' ).css ( 'display' ) == 'block' ? 1 : 0;
			
			$('.submenu').css ( { display : 'none' } );
			
			if ( collapse )
				$(this).siblings ( '.submenu' ).css ( { display : 'none' } );
			else
				$(this).siblings ( '.submenu' ).css ( { display : 'block' } );
			
			return false;
		}
		else return true;
	} );*/
	
	// tooltips (view thumbnails)
	$('.tmbBox').hover 
	(
		function ()
		{
			var w = $(this).width ();
			var h = $(this).height ();
			
			$(this).children ( '.titleBox' ).css ( { 'display' : 'block', 'left' : '0', 'top' : '0', 'width' : w, 'height' : h, 'z-index' : 99 } );
		},
		function ()
		{
			$(this).children ( '.titleBox' ).css ( { 'display' : 'none' } );
		}
	);
	$('.titleBox').click ( function () {
		var caption = $(this).children ( 'h3' ).text () + '*' + $(this).children ( 'p' ).text ();
		var url = $(this).siblings ( 'a' ).get ()[0].href;
		tb_show ( caption, url, 'folderGallery' );
	} );

} );
