$(function(){
       
		//Hover Effect
		var opacity = 0.7, toOpacity = 0.9, duration = 250;
		$('.opacity').css('opacity',opacity).hover(function() {
				$(this).fadeTo(duration,toOpacity);
			}, function() {
				$(this).fadeTo(duration,opacity);
			}
		);
		
		// Modal Windows			
		$.nyroModalSettings({
			debug: false,
			title: '',
			height: null,
			width: null,
			minHeight: null,
			padding: 0,
			bgColor: '#666', // Background color
			cssOpt: { // Default CSS option for the nyroModal Div. Some will be overwritten or updated when using IE6
				content: {
				  background: '#ccc',
				  color: '#666',
				  overflow: 'hidden'
				}
			}
		});
                    
});
