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