 $(document).ready(function(){
   // Your code here
	 // do stuff
		
		external(); //launch external window script
		BrowserDetect.init(); //Launch Browser Detection
		//customform();
		
		/* for Internet Explorer */
		/*@cc_on @*/
		/*@if (@_win32)
			
			//if IE6...launch superSleight
			if(BrowserDetect.version == 6){
				// limit to part of the page ... pass an ID to limitTo:
				//supersleight.limitTo('header');
				supersleight.init();
				supersleight.run();
			}
		
			if(BrowserDetect.version <= 7 ){sfHover();}
		
		/*@end @*/
		
		//Jquery commands
		
		var out = false;
		
		$(".tag-button").hover(
		  function(event){
				$("img.tag").animate({right: -162	}, 500, "swing");	
			},
		  function(event) {
				$("img.tag").animate({right: -36	}, 500, "swing");	
			}
		);
			
		//innerfade 
		//$('#innerfade').innerfade({ animationtype: 'fade', speed: 1000, timeout: 5000, containerheight: '644px' });	
		$(".cboxElement").colorbox();
		
 });

