﻿function initEWD_Lib()
{	
	/*$(function() {
        $('#gallery a').lightBox();
    });*/
	
	Shadowbox.init({
		language: 'en',
		players:  ['img', 'html', 'iframe', 'qt', 'wmp', 'swf', 'flv']
	});

	$(document).ready(function() {
		$(".colorimg img").fadeTo(1, 0.7);
		$(".colorimg img").hover(
			function () {
				$(this).fadeTo('fast', 1.0);
				
			}, 
			function () {
				$(this).fadeTo('fast', 0.7);
			}
		);
		
		$('p').firstLetter({effect: 'span'});
		
		
		$('#leftScroller').click(function() {
			$('#subMenuAnchor').animate( {left: '+=250'} , 350, function() {});
		});
		
		$('#rightScroller').click(function() {
			$('#subMenuAnchor').animate( {left: '-=250'} , 350, function() {});
		});

	});
}

