// JavaScript Document
$(document).ready(function(){
	// Fading Hovered Images
	$('a img').mouseover(function(){$(this).animate({'opacity':0.75}, 300, function(){$(this).animate({'opacity':1}, 300);});});
	// Drop Down Blocks
	$('.dd_link').click(function(){$(this).parent().find('.dd_block').slideToggle();return false;});
	// PrettyPhoto
	$("a[rel^='prettyPhoto']").prettyPhoto();
});

// Include
function include(url) {
  var script = document.createElement('script');
  script.setAttribute('type', 'text/javascript')
  script.setAttribute('src', url);
  document.getElementsByTagName('head').item(0).appendChild(script);
}

