//window.onload = function(){ alert("welcome"); }
/* 
 $(document).ready(function(){
   // Your code here
	 $("a").click(function(event){
	   alert("Thanks for visiting!");
	 });
});
 
 
 
 $(document).ready(function(){
	  $("a").click(function(event){
	   alert("As you can see, the link no longer took you to jquery.com");
	   event.preventDefault();
	 });
});
 
 
$(document).ready(function(){
  $("a").click(function(event){
   event.preventDefault();
   $(this).hide("slow");
 });
});


$(document).ready(function(){
 $("a").addClass("test").show().html("foo");
});


$(document).ready(function(){
  $("a").click(function(event){
   event.preventDefault();
  $(this).slideUp("slow");
	});
});
*/

$(document).ready(function() {
$('img.reflect').reflect({inline: true,});
});