$('document').ready(function(){
				$('#starting-ad').lightBox();
				$('#starting-ad').click();
				
				$("ul.thumb li").hover(function() {
					$(this).css({'z-index' : '10'}); /*Add a higher z-index value so this image stays on top*/ 
					$(this).find('img').addClass("hover").stop() /* Add class of "hover", then stop animation queue buildup*/
						.animate({
							marginTop: '-110px', /* The next 4 lines will vertically align this image */ 
							marginLeft: '-110px',
							top: '50%',
							left: '50%',
							width: '174px', /* Set new width */
							height: '174px', /* Set new height */
							padding: '10px',
							border: '0'
						}, 200); /* this value of "200" is the speed of how fast/slow this hover animates */

					} , function() {
					$(this).css({'z-index' : '0'}); /* Set z-index back to 0 */
						$(this).find('img').removeClass("hover").stop()  /* Remove the "hover" class , then stop animation queue buildup*/
							.animate({
								marginTop: '0', /* Set alignment back to default */
								marginLeft: '0',
								top: '0',
								left: '0',
								width: '90px', /* Set width back to default */
								height: '70px', /* Set height back to default */
								padding: '0px',
								display: 'inline',
								border: '1px solid #FFF'
							}, 400);
					});
					
					$('#fade-in-slideshows').cycle({
						fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
						speed: '3000',
						timeout: '4000'
					});
					
					// execute your scripts when the DOM is ready. this is mostly a good habit
					$(function() {

						// initialize scrollable
						$("#fade-in-slideshows").scrollable();

					});
					
					
					

				
			});
			
			/*$(document).ready(function(){
		        tooltip();//active les tooltip simple
			});*/

			$(document).ready(function(){
	            $("#resources tr:even").addClass("even");
	            $("#resources tr:not(.even)").hide();
	            $("#resources tr:first-child").next("tr").show();
	            
	            $("#resources tr.even").click(function(){
	                $(this).next("tr").toggle();
	                $(this).find(".arrow").toggleClass("up");
	            });
	            //$("#resources").jExpand();
			});
			
			this.tooltip = function(){
			        /* CONFIG */
			                xOffset = 10;
			                yOffset = 20;
			                // these 2 variable determine popup's distance from the cursor
			                // you might want to adjust to get the right result
			        /* END CONFIG */
			        $("a.tooltip").hover(function(e){
			                this.t = this.title;
			                this.title = "";
			                $("body").append("<p id='tooltip'>"+ this.t +"</p>");
			                $("#tooltip")
			                        .css("top",(e.pageY - xOffset) + "px")
			                        .css("left",(e.pageX + yOffset) + "px")
			                        .fadeIn("fast");
			    },
			        function(){
			                this.title = this.t;
			                $("#tooltip").remove();
			    });
			        $("a.tooltip").mousemove(function(e){
			                $("#tooltip")
			                        .css("top",(e.pageY - xOffset) + "px")
			                        .css("left",(e.pageX + yOffset) + "px");
			        });
			};
