	    $(document).ready(function() {
		
		
			$(function() {
				// Use this example, or...
				//$("a[@rel*=lightbox]").lightBox(); // Select all links that contains lightbox in the attribute rel
				// This, or...
				//$("#gallery a").lightBox(); // Select all links in object with gallery ID
				// This, or...
				$("a.lightbox").lightBox(); // Select all links with lightbox class
				// This, or...
				//$("a").lightBox(); // Select all links in the page
				// ... The possibility are many. Use your creative or choose one in the examples above
			});
	
	
	
	        $("#coin-slider").coinslider({ 
			width: 620,
			height: 279,
			spw: 10, 
			sph: 6,
			navigation: true, 
			delay: 6000,
			sDelay: 1, 
			effect: 'random'
			});
			
			
			//effect: '', // random, swirl, rain, straight
			
			
			function callbackMe(){
			 var linkid = $(this).find('a').attr('href');
			 window.location = linkid; return false;
			}
			$("#easeMenu").easeMenu({ulPadding:0, velocity: 300, edges:50, debug: true, extendClick: callbackMe});
			$("#easeMenu2").easeMenu({ulPadding:0, velocity: 300, edges:50, debug: true, extendClick: callbackMe});

		
			$.fx.speeds._default = 2000;
			$(function() {
				$( "#dialog" ).dialog({
					autoOpen: false,
					show: "blind",
					hide: "explode"
				});

				$( "#opener" ).click(function() {
					$( "#dialog" ).dialog( "open" );
					return false;
				});
			});
			
			$("#accordion").accordion({ header: ".content_title", active: 2,collapsible:true });
			

		
	    });
