Cufon.replace('.text_headline', {
	fontFamily: 'Adobe Garamond',
	fontSize: '17px'
});
Cufon.replace('.text_title', {
	fontFamily: 'Myriad Pro',
	fontSize: '20px',
	color: '#444444'
});
Cufon.replace('.text_subtitle', {
	fontFamily: 'Myriad Pro',
	fontSize: '10px',
	color: '#444444'
});
Cufon.replace('.text_thumbnail', {
	fontFamily: 'Adobe Garamond',
	fontSize: '9px',
	textTransform: 'uppercase',
	hover: 'true'
});
Cufon.replace('.text_thumbnailprice', {
	fontFamily: 'Adobe Garamond',
	fontSize: '36px',
	hover: 'true'
});
Cufon.replace('.text_sup', {
	fontFamily: 'Adobe Garamond',
	fontSize: '20px',
	hover: 'true'
});
Cufon.replace('.footer_stores', {
	fontFamily: 'Myriad Pro',
	fontSize: '10px',
	hover: 'true'
});
Cufon.replace('.header_menu', {
	fontFamily: 'Myriad Pro',
	fontSize: '12px',
	fontWeight: 'normal',
	hover: 'true'
});
Cufon.replace('.footer_menu', {
	fontFamily: 'Myriad Pro',
	fontSize: '10px',
	hover: 'true'
});
/*
Cufon.replace('#item_title', {
	fontFamily: 'Myriad Pro',
	fontSize: '14px',
	color: '#a96262'
});
*/

/*
color			
	Description: The color of the text. Defined in CSS, unless you’re using gradients (see Styling for more information).
	Possible Values: 'red', '#f62315', ..  
	Default Value: Defined in CSS  

fontFamily		
	Description: The name of the font you’d like to use. Defaults to the name of the font that was loaded last (i.e. last <script>).  
	Possible Values: Name of any loaded font  
	Default Value: The name of the last font  

fontSize		
	Description: The size of the font. Defined in CSS, you should not touch this value. Only use pixel values if you do.  
	Possible Values: '14px', '24px', '72px', ..  
	Default Value: Defined in CSS  

fontStyle		
	Description: The style of the font. Defined in CSS, the best match is chosen by default.  
	Possible Values: 'normal', 'italic', 'oblique'  
	Default Value: Defined in CSS  

fontWeight		
	Description: The weight of the font. Defined in CSS. The best match is chosen by default. You might have to adjust this value for rarer weights if you’re using multiple variants of a font.  
	Possible Values: 100-900, 'normal', 'bold'  
	Default Value: Defined in CSS  

forceHitArea	
	Description: Fixes hit area for mouse events in Internet Explorer. Enabling hover also enabled this option.  
	Possible Values: true, false  
	Default Value: false  

hover			
	Description: Whether or not :hover is enabled. For performance reasons this option disabled by default.  
	Possible Values: true, false  
	Default Value: false  

hoverables		
	Description: Defines which elements :hover is used with. Defaults to links only as IE6 can’t handle anything else.  
	Possible Values: { tag: true, .. }  
	Default Value: { a: true }  

letterSpacing	
	Description: The space between letters, in addition to kerning (if enabled). Defined in CSS.  
	Possible Values: '-1px', ..  
	Default Value: Defined in CSS  

textTransform 	
	Description: How to transform the text. Defined in CSS.  
	Possible Values: 'uppercase', 'lowercase', 'capitalize', 'none'  
	Default Value: Defined in CSS
	
	
Example:

Cufon.replace('h1', {
	color: '-linear-gradient(white, black)',
	fontFamily: 'Scriptina',
	textShadow: '1px 1px rgba(0, 0, 0, 0.2)'
});

*/