/*
 * This script instantiates jQuery methods for phones pages.
 * These methods could bind events to elements, for example.
 */

$(function(){
	// Here we're appling the IE6 PNG 24 hack to all images with a src that contains "/assets/phonefeature".
	$("img[src*='/assets/phonefeature']").supersleight({backgrounds: false});

	// Vertically align phone features controls within its parent.
	//$('#item-features-wrapper').vAlign();
});