<?php
 /*
 Plugin Name: iDevCenter
 Plugin URI: http://www.idevcenter.com/tools/wordpress/
 Description: iDevCenter integration for WordPress powered blogs.
 Author: Sepehr Lajevardi
 Version: 1.0
 Author URI: http://www.sepehr.mp/
 */
function idcVoteHandler(){
  $url = rawurlencode(get_permalink($post->ID));
  return '<a href="http://www.idevcenter.com/links/vote?url='. $url .'" class="idcVoteAnchor">'
			.'<img src="http://www.idevcenter.com/links/image?url='.$url .'" alt="Vote on iDevCenter" title="Vote on iDevCenter" class="idcVoteImage" />'
			.'</a>';
}
function idcInit(){
  if (function_exists('add_shortcode')) // Only support WP 2.5+
    add_shortcode('idc-vote','idcVoteHandler'); // Attach the shortcode handler
}
add_action('plugins_loaded','idcInit');
?>