$(document).ready(function() {
	
	/*$("a").click(function() {
		alert("Hello world!");
	});

	$("#orderedlist").addClass("red");

	$("#orderedlist > li").addClass("blue");

	$("#orderedlist li:last").hover(function() {
		$(this).addClass("green");
	},function(){
		$(this).removeClass("green");
   });

   $("#orderedlist").find("li").each(function(i) {
     $(this).append( " BAM! " + i );
   });

   // use this to reset a single form
   $("#reset").click(function() {
     $("form")[0].reset();
   });

   $("li").not(":has(ul)").css("border", "1px solid black"); 

   $("a[name]").css("background", "#eee" );

   $('#faq').find('dd').hide().end().find('dt').click(function() {
     $(this).next().slideToggle();
   });

   $("a").hover(function(){
     $(this).parents("p").addClass("highlight");
   },function(){
     $(this).parents("p").removeClass("highlight");
   });

   $('.curves').dropCurves({
            bSize:2, // 2px border size
            bColor:'#fff', // white border
            sColor:'#333', // shadow color
            sX:-3, // shadow offset X
            sY:3, // shadow offset Y
            o:0.5 // shadow opacity
        });*/
		$(function() {
		//$('.boxy').boxy();
		$('.boxy').boxy({modal: true});
	});


});
