	$(document).ready(function(){
$("#content a").fancybox({
  zoomSpeedIn: 200,
  zoomSpeedOut:200,
  frameWidth: 860,
  frameHeight: 540,
  overlayShow: 0
});

$(".column ul a").hover(
    		function() {    			
    			$(this).animate({backgroundColor: "#555555"},30);
    			$(this).animate({
    				backgroundColor: "#fffc00",
    				marginLeft: "-10px"
    			 }, 200);
			},
    		function() {    			
    			$(this).animate({
    				backgroundColor: "#eeeeee",
    				marginLeft: "0"
    			 }, 150);
    			
    			
			}
);
 
$(".tag a").click(function(event){
	return false;
});

  function tag (name) {  	
    	$(".tag a#"+name).hover(
    		function() {
    			$("#content a."+name).animate({
    				backgroundColor: "#fffc00",
    				marginLeft: "-10px"
    			 }, 200);
			},
    		function() {
    			$("#content a."+name).animate({
    				backgroundColor: "#eeeeee",
    				marginLeft: "0"
    			 }, 100);	
    		}
        );
        
  }
    	  
	tag("d2009");tag("politics");
	tag("d2006");tag("d2007");tag("d2008");tag("design");tag("html");tag("corporate");tag("php ");tag("business");tag("store ");tag("cms ");tag("joomla");
	tag("travel");tag("blog");tag("ajax");tag("flash ");tag("social");tag("fashion");tag("wordpress");tag("xcart");
	tag("dating");tag("jobs");tag("multilingual");tag("silverlight");tag("net");tag("silverstripe");tag("security");
	tag("microsoft");tag("ruby");tag("drupal");tag("civicrm");tag("magazine");tag("jewelry");tag("health");tag("custom");tag("charity");
	
 
});
