$(document).ready(function(e) {
	$('div#findus').contextMenu('findus_menu', {
      bindings: {
        'facebook': function(t) {
			url= 'http://www.facebook.com/ModCloth'
			window.open(url,'facebook');
        },
        'myspace': function(t) {
			url= 'http://www.myspace.com/modcloth'
			window.open(url,'myspace');
        },
        'kaboodle': function(t) {
			url= 'http://www.kaboodle.com/modcloth'
			window.open(url,'kaboodle');
        },
		'twitter': function(t) {
			url='http://twitter.com/modcloth';
			window.open(url,'twitter');
        },
		'polyvore': function(t) {
			url= 'http://www.polyvore.com/cgi/profile?id=1501'
			window.open(url,'polyvore');
        },
		'rss': function(t) {
 			url= 'http://' +window.location.host + '/storefront/products/product_feed'
			window.location = url
        }
      }
    });
})